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"; $res = 'no'; if($time>$otro){ $res = 'si'; } echo "es mayor la hora de ingreso que la de atencion :".$res;
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught TypeError: date(): Argument #2 ($timestamp) must be of type ?int, string given in /in/SJpbW:12 Stack trace: #0 /in/SJpbW(12): date('H:i', '09:00:00') #1 {main} thrown in /in/SJpbW on line 12
Process exited with code 255.
Output for 5.6.13 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 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/SJpbW on line 12 hora de ingreso: 22:44 hora comienzo atencion: 09:00 es mayor la hora de ingreso que la de atencion :si
Output for 7.3.32 - 7.3.33
hora de ingreso: 22:44 hora comienzo atencion: 09:00 es mayor la hora de ingreso que la de atencion :si
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/SJpbW on line 12 hora de ingreso: 23:44 hora comienzo atencion: 09:00 es mayor la hora de ingreso que la de atencion :si

preferences:
246.41 ms | 402 KiB | 376 Q