3v4l.org

run code in 300+ PHP versions simultaneously
<?php $months = array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); $yes = 0; for ($i = 0; $i < 12; ++$i) { $result = date('m.d.y', strtotime($months[$i])); if ((substr(($result, 0, 2)-1) != [$i]) { $correct = "no"; } else { $correct = "yes"; $yes++; } echo substr(($result, 2)-1); //echo $correct . " - " . $result . "\n"; } echo "\n" . $yes . " / 12 correct months."; ?>
Output for 5.3.0 - 5.3.27, 5.4.0 - 5.4.21
Parse error: syntax error, unexpected ',' in /in/OGgP3 on line 8
Process exited with code 255.

preferences:
203 ms | 1386 KiB | 57 Q