3v4l.org

run code in 300+ PHP versions simultaneously
<?php function isCheckInTooSoon($lowerLimit) { //$currentHours = $this->get('TimeService')->getCurrentHour(); $currentHours = date('Hi'); return $currentHours < $lowerLimit; } function isCheckInAfterCheckOutLimit($upperLimit) { //$currentHours = $this->get('TimeService')->getCurrentHour(); $currentHours = date('Hi'); return $currentHours > $upperLimit; } print_r('is it too soon?'); var_dump(isCheckInTooSoon('0815')); print_r('is it too late?'); var_dump(isCheckInAfterCheckOutLimit('2000'));

preferences:
46.82 ms | 402 KiB | 5 Q