Home
last modified time | relevance | path

Searched refs:match (Results 51 – 55 of 55) sorted by path

123

/dokuwiki/vendor/simplepie/simplepie/src/Net/
H A DIPv6.php150 foreach ($matches[0] as $match) {
151 if (strlen($match[0]) > $max) {
152 $max = strlen($match[0]);
153 $pos = $match[1];
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php722 if (preg_match($pcre, $date, $match)) {
724 $year = (int) $match['year'];
725 $month = isset($match['month']) ? (int) $match['month'] : 1;
726 $day = isset($match['day']) ? (int) $match['day'] : 1;
727 $hour = isset($match['hour']) ? (int) $match['hour'] : 0;
728 $minute = isset($match['minute']) ? (int) $match['minut
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php519 public function do_strip_htmltags($match) argument
522 if (isset($match[4]) && !in_array(strtolower($match[1]), ['script', 'style'])) {
523 $match[1] = htmlspecialchars($match[1], ENT_COMPAT, 'UTF-8');
524 $match[2] = htmlspecialchars($match[2], ENT_COMPAT, 'UTF-8');
525 return "<$match[1]$match[2]>$match[
[all...]
H A DSimplePie.php1414 * Allows you to override SimplePie's output to match that of your webpage.
1774 $headers['if-none-match'] = $this->data['headers']['etag'];
2783 } elseif (($return = $this->get_channel_tags(self::NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match)) {
2784 return (float) $match[1];
2808 } elseif (($return = $this->get_channel_tags(self::NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match)) {
2809 return (float) $match[2];
H A DSource.php430 } elseif (($return = $this->get_source_tags(\SimplePie\SimplePie::NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match)) {
431 return (float) $match[1];
443 } elseif (($return = $this->get_source_tags(\SimplePie\SimplePie::NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match)) {
444 return (float) $match[2];

123