3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = "this is school of sachin"; $pattern = "sch"; $b = explode(' ',$a); $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:
47.46 ms | 402 KiB | 5 Q