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 < 0) { return 'Yesterday'; } else { return date('l, j F, Y',$time ? $time : time()); } } $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 var_dump($my_relative_time); ?>
Output for 4.3.10 - 4.3.11, 4.4.0 - 4.4.9, 5.0.3 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0
1387414638 string(27) "Saturday, 15 December, 2007"
Output for 5.0.2
1387407600 string(27) "Saturday, 15 December, 2007"
Output for 5.0.0 - 5.0.1
1387407600 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/FlX7V on line 5 PHP_EOLstring(27) "Saturday, 15 December, 2007"
Output for 4.3.0 - 4.3.9
1387414638 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/FlX7V on line 5 PHP_EOLstring(27) "Saturday, 15 December, 2007"

preferences:
172.88 ms | 401 KiB | 218 Q