3v4l.org

run code in 300+ PHP versions simultaneously
<?php $pattern = "sch"; $b = explode(' ','this is school of sachin'); $b = array_reverse($b); for($i=0;$i < count($b);$i++){ if(strpos($b[$i],$pattern) !== false){ echo $i+1; $full = ', not a full word'; if($b[$i] == $pattern){ $full = ', full word'; } echo $full; break; } } ?>

preferences:
32.22 ms | 402 KiB | 5 Q