3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = 'Hi Nemo'; function solution (string $str) { foreach(explode(' ', $str) as $wordNum => $value) { if ($value === 'Nemo') { return "I found Nemo at $wordNum+1"; } } 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(19) "I found Nemo at 1+1"

preferences:
47.63 ms | 406 KiB | 5 Q