| // +----------------------------------------------------------------------+ // // $Id$ /** * Replace time_sleep_until() * * @category PHP * @package PHP_Compat * @link http://php.net/time_sleep_until * @author Arpad Ray * @version $Revision: 1.2 $ * @since PHP 5.1.0 * @require PHP 4.0.1 (trigger_error) */ if (!function_exists('time_sleep_until')) { function time_sleep_until($timestamp) { list($usec, $sec) = explode(' ', microtime()); $now = $sec + $usec; if ($timestamp <= $now) { user_error('Specified timestamp is in the past', E_USER_WARNING); return false; } $diff = $timestamp - $now; usleep($diff * 1000000); return true; } } ?>