3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = 'Hi Nemo'; function solution (string $str) { foreach(str_split($str) as $wordNum => $value) { if ($value === 'Nemo') { return "I found Nemo at $wordNum"; } } return 'I can\'t found Nemo'; } var_dump(solution($x));
Output for 8.1.0 - 8.1.31, 8.2.0 - 8.2.26, 8.3.0 - 8.3.15, 8.4.1 - 8.4.2
string(18) "I can't found Nemo"

preferences:
48.6 ms | 406 KiB | 5 Q