3v4l.org

run code in 300+ PHP versions simultaneously
<?php date_default_timezone_set('America/Montevideo'); $hoy = date('d-m-Y H:i:s'); $hoystr = strtotime($hoy); $mañana = date('d-m-Y H:i:s',strtotime('+1 day', $hoystr)); /*echo $hoy; echo "\n"; echo $mañana; echo "\n";*/ $time = strtotime(date('H:i',$hoystr)); $otro = strtotime(date('H:i','09:00:00')); echo "hora de ingreso: ".date('H:i',$hoystr); echo "\n"; echo "hora comienzo atencion: 09:00"; echo "\n"; echo "diferencia: ".date('H:i',$time-$otro);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Fatal error: Uncaught TypeError: date(): Argument #2 ($timestamp) must be of type ?int, string given in /in/2Lp4O:12 Stack trace: #0 /in/2Lp4O(12): date('H:i', '09:00:00') #1 {main} thrown in /in/2Lp4O on line 12
Process exited with code 255.
Output for 5.6.13 - 5.6.38, 7.0.0 - 7.0.33, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: A non well formed numeric value encountered in /in/2Lp4O on line 12 hora de ingreso: 22:20 hora comienzo atencion: 09:00 diferencia: 22:20
Output for 7.3.32 - 7.3.33
hora de ingreso: 22:20 hora comienzo atencion: 09:00 diferencia: 22:20
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.12
Notice: A non well formed numeric value encountered in /in/2Lp4O on line 12 hora de ingreso: 23:20 hora comienzo atencion: 09:00 diferencia: 23:20

preferences:
248.53 ms | 402 KiB | 335 Q