3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo "The date is : " . print_r(date_parse_from_format('Y-d-m H:i:s', '2014-02-05 5:22:35'), true); $date = strtotime(date('Y-d-m H:i:s', '2014-02-05 5:22:35')); $now = time(); echo round(abs($now - $date) / 60,2). " minutes ago";
Output for 7.3.0 - 7.3.12
The date is : Array ( [year] => 2014 [month] => 5 [day] => 2 [hour] => 5 [minute] => 22 [second] => 35 [fraction] => 0 [warning_count] => 0 [warnings] => Array ( ) [error_count] => 0 [errors] => Array ( ) [is_localtime] => ) Notice: A non well formed numeric value encountered in /in/eKas6 on line 4 23315256.88 minutes ago
Output for 5.3.0 - 5.3.16, 5.3.18 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.38, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.24
The date is : Array ( [year] => 2014 [month] => 5 [day] => 2 [hour] => 5 [minute] => 22 [second] => 35 [fraction] => [warning_count] => 0 [warnings] => Array ( ) [error_count] => 0 [errors] => Array ( ) [is_localtime] => ) Notice: A non well formed numeric value encountered in /in/eKas6 on line 4 23315256.88 minutes ago
Output for 5.3.17
The date is : Array ( [year] => 2014 [month] => 5 [day] => 2 [hour] => 5 [minute] => 22 [second] => 35 [fraction] => [warning_count] => 0 [warnings] => Array ( ) [error_count] => 0 [errors] => Array ( ) [is_localtime] => ) Notice: A non well formed numeric value encountered in /in/eKas6 on line 4 23315256.9 minutes ago
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Fatal error: Call to undefined function date_parse_from_format() in /in/eKas6 on line 3
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: date_parse_from_format() in /in/eKas6 on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: date_parse_from_format() in /in/eKas6 on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: date_parse_from_format() in /in/eKas6 on line 3

preferences:
248.39 ms | 401 KiB | 318 Q