3v4l.org

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

preferences:
33.41 ms | 402 KiB | 5 Q