3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = 'Hi Nemo'; function solution (string $str) { foreach(str_split($x) 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
Warning: Undefined variable $x in /in/3heVg on line 8 Deprecated: str_split(): Passing null to parameter #1 ($string) of type string is deprecated in /in/3heVg on line 8 string(18) "I can't found Nemo"

preferences:
47.89 ms | 406 KiB | 5 Q