3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo $phpdate = strtotime('0 day'); echo PHP_EOL; function relative_date($time) { $today = strtotime(date('M j, Y')); $reldays = ($time - $today)/86400; if ($reldays >= 0 && $reldays < 1) { return 'Today'; } else if ($reldays >= 1 && $reldays < 2) { return 'Tomorrow'; } else if ($reldays >= -1 && $reldays < 0) { return 'Yesterday'; } $my_timestamp = "2007-12-15 11:22:47"; //store the results of the function into $my_relative_time $my_relative_time = relative_date(strtotime($my_timestamp )); //output echo $my_relative_time; ?>
Output for 5.4.0 - 5.4.23
Parse error: syntax error, unexpected end of file in /in/NkUoR on line 42
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected $end in /in/NkUoR on line 42
Process exited with code 255.

preferences:
171.48 ms | 1395 KiB | 60 Q