3v4l.org

run code in 300+ PHP versions simultaneously
<?php function isPalindrome($str) { $strCheck = ''; $length = strlen($str)- 1; $i=0; while($length >= 0) { $strCheck[$i] = $str[$length] } if($strCheck == $str) { return true; } return false; } var_dump(isPalindrome('hello')); ?>
Output for 5.3.25 - 5.3.26, 5.4.16
Parse error: syntax error, unexpected '}' in /in/9SoMk on line 11
Process exited with code 255.
Output for 5.3.0 - 5.3.24, 5.4.0 - 5.4.15
Parse error: syntax error, unexpected '}' in bdK6P on line 11
Process exited with code 255.

preferences:
177.68 ms | 1387 KiB | 51 Q