<?php $tester = function ($interval) { $max = (int) (PHP_INT_MAX / 1000); $interval = (int) $interval; if ($interval < 0 || $interval >= $max) { echo 'Wrong interval'; } else { echo 'Ok'; } echo PHP_EOL; }; $tester(1); $tester(1000); $tester(PHP_INT_MAX / 1000); $tester((PHP_INT_MAX / 1000) - 2);
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`