Searched refs:seconds (Results 1 – 5 of 5) sorted by relevance
58 public static function time_hms($seconds) argument62 $hours = floor($seconds / 3600);63 $remainder = $seconds % 3600;69 $seconds = $remainder % 60;73 if ($seconds < 10) {74 $seconds = '0' . $seconds;78 $time .= $seconds;
914 * @param int $seconds The feed content cache duration916 public function set_cache_duration($seconds = 3600) argument918 $this->cache_duration = (int) $seconds;925 * @param int $seconds The autodiscovered feed URL cache duration.927 public function set_autodiscovery_cache_duration($seconds = 604800) argument929 $this->autodiscovery_cache_duration = (int) $seconds;
15 highlighted in just 6 seconds), but above about 25K things get a little slow... If
258 $lang['seconds'] = 'a secundis %d';
1363 private static function stream_select(&$read, &$write, &$except, $seconds, $microseconds = null) argument1365 $remaining = $seconds + $microseconds / 1000000;1368 $result = @stream_select($read, $write, $except, $seconds, $microseconds);1373 $seconds = (int) ($remaining - floor($elapsed));1374 $microseconds = (int) (1000000 * ($remaining - $seconds));