Lines Matching refs:rest
30 list($ns, $rest) = explode('?', $match, 2);
42 if (!$rest) {
43 $rest = $ns;
53 if (preg_match("/\d{4}-\d{2}-\d{2}/", $rest)) {
54 list($year, $month, $day) = explode('-', $rest, 3);
60 } elseif (preg_match("/\d{4}-\d{2}/", $rest)) {
61 list($year, $month) = explode('-', $rest, 2);
75 } elseif (preg_match("/\d{4}/", $rest)) {
76 $start = mktime(0, 0, 0, 1, 1, $rest);
77 $end = mktime(0, 0, 0, 1, 1, $rest + 1);
80 } elseif ($rest == '*') {