Home
last modified time | relevance | path

Searched refs:matches (Results 1001 – 1025 of 1144) sorted by path

1...<<414243444546

/plugin/signhere/
H A Dsyntax.php58 preg_match('/-_(.*?)_-/', $match, $matches);
59 return array($matches[1]);
/plugin/siteexport/action/
H A Dajax.php809 …& preg_match("%((/lib/exe/(fetch|detail|indexer)|feed|doku)\.php)/?(.*?)$%", $DATA[2], $matches)) {
812 $DATA[2] = $matches[1];
813 …RAMS .= '&' . (in_array($matches[3], array('fetch', 'detail')) ? 'media' : 'id') . '=' . cleanID(s…
815 …ebug->message("DATA after second rewrite with UseRewrite = 2", array($DATA, $matches, $PARAMS), 1);
1084 if (preg_match("%media=(https?://.*?$)%", $DATA[2], $matches)) {
1085 $DATA[2] = $matches[1];
/plugin/sketchcanvas/phplib/
H A Dspyc.php978 if (($line[0] == '"' || $line[0] == "'") && preg_match('/^(["\'](.*)["\'](\s)*:)/',$line,$matches)) {
979 $value = trim(str_replace($matches[1],'',$line));
980 $key = $matches[2];
1013 if ($line[0] == '&' && preg_match('/^(&['.$symbolsForReference.']+)/', $line, $matches)) return $matches[1];
1014 if ($line[0] == '*' && preg_match('/^(\*['.$symbolsForReference.']+)/', $line, $matches)) return $matches[1];
1015 if (preg_match('/(&['.$symbolsForReference.']+)$/', $line, $matches)) return $matches[1];
1016 if (preg_match('/(\*['.$symbolsForReference.']+$)/', $line, $matches)) retur
[all...]
/plugin/smtp/classes/
H A DMessage.php36 if(preg_match('#(.*?)<(.*?)>#', $this->from, $matches)) {
37 return $matches[2];
55 if(preg_match('#(.*?)<(.*?)>#', $addr, $matches)) {
56 $rcpt[] = trim($matches[2]);
/plugin/sneakyindexfix/
H A Daction.php81 … $matches = preg_grep('/^'.preg_quote($ns, '/').':[\w:\*]+[ \t]+([^ \t]+)[ \t]+/', $AUTH_ACL);
82 if(count($matches)) {
83 foreach($matches as $match) {
/plugin/snippets/
H A Daction.php69 $n = preg_match('/strong>(.*?)<\/strong/',$msg, $matches);
70 $msg = str_replace('!', '.',$matches[1]) . ' ';
192 preg_match_all("/~~SNIPPET_C~~(.*?)~~/",$event->data[0][1],$matches);
193 $intersect = array_intersect($snippets,$matches[1]);
H A Dadmin.php108 preg_match_all("/~~SNIPPET_C~~(.*?)~~/",$text,$matches);
109 $ar = $matches[1];
129 $refs_diff_1 = array_diff($refs_keys,$matches[1]);
130 $refs_diff_2 = array_diff($matches[1],$refs_keys);
141 $diff = array_diff($snips,$matches[1]) ;
H A Dhelper.php77 if($sum && preg_match('#restored\s+(\(.*?\))#',$sum,$matches)){
78 return strtotime(trim($matches[1],'()'));
150 function($matches){
152 …return time() . $matches[1]. "\n" .$replacement . "\n"; // time() makes each update unique for…
/plugin/snippets/exe/
H A Dupdate.php57 preg_match_all("/~~SNIPPET_C~~(.*?)~~/",$text,$matches);
58 $intersect = array_intersect($matches[1],$snippets);
/plugin/sortablejs/
H A Dsyntax.php129 if ( preg_match( '/r?\d*/', $c, $matches ) ) {
/plugin/spellcheck/
H A Dspellcheck.php88 function spaceslink($matches){ argument
89 $string = unslash($matches[1]);
90 $check = unslash($matches[2]);
/plugin/sphinxsearch-was/
H A Dfunctions.php109 $matches = array();
110 if (!preg_match("/$regex/i", $doc, $matches)) {
113 if (empty($matches[1])) {
116 $end = strpos($doc, $matches[1]);
130 if (preg_match("/$regex/i", $doc, $matches)) {
131 $startHeader = $matches[0];
136 if (preg_match("/$regex/i", $endDoc, $matches)) {
137 $endHeader = $matches[0];
155 if (preg_match("/$regex/i", $endDoc, $matches)) {
156 $endHeader = $matches[0];
/plugin/sphinxsearch/
H A Dfunctions.php117 $matches = array();
118 if (!preg_match("/$regex/i",$doc,$matches)) {
121 if (empty($matches[1])){
124 $end = strpos($doc, $matches[1]);
138 if (preg_match("/$regex/i",$doc,$matches)) {
139 $startHeader = $matches[0];
144 if (preg_match("/$regex/i",$endDoc,$matches)) {
145 $endHeader = $matches[0];
163 if (preg_match("/$regex/i",$endDoc,$matches)) {
164 $endHeader = $matches[0];
/plugin/sql/
H A Dsyntax.php18 if (preg_match($pattern, $xml, $matches)) {
19 return $matches[1];
22 if (preg_match($pattern, $xml, $matches)) {
23 return $matches[1];
/plugin/sql2wiki/syntax/
H A Dquery.php65 if (preg_match('/([[:alpha:]]+)\((.*)\)/', $value, $matches)) {
66 $class = $matches[1];
67 $config = json_decode($matches[2], true);
/plugin/sqlraw/
H A Dsimple_html_dom.php684 preg_match_all($pattern, trim($selector_string).' ', $matches, PREG_SET_ORDER);
685 if (is_object($debugObject)) {$debugObject->debugLog(2, "Matches Array: ", $matches);}
691 foreach ($matches as $m) {
890 foreach ($matches as $match) {
1196 $success = preg_match('/charset=(.+)/', $contentTypeHeader, $matches);
1199 $charset = $matches[1];
1215 $success = preg_match('/charset=(.+)/', $fullvalue, $matches);
1218 $charset = $matches[1];
1620 $count = preg_match_all($pattern, $this->doc, $matches, PREG_SET_ORDER|PREG_OFFSET_CAPTURE);
1627 $this->noise[$key] = $matches[$i][$idx][0];
[all …]
H A Dsyntax.php629 if (ereg($pattern, $xml, $matches))
630 return $matches[1];
632 if (ereg($pattern, $xml, $matches))
633 return $matches[1];
/plugin/starred/
H A Dsyntax.php38 preg_match('{{starred((?:>min)?)\|?(\d*)}}', $match, $matches);
39 return array('min' => $matches[1] !== '',
40 'limit' => $matches[2]);
/plugin/statdisplay/
H A DBrowser.php584 if( preg_match('/Version\/(10.*)$/',$resultant,$matches) ) {
585 $this->setVersion($matches[1]);
742 $this->setVersion($matches[1]);
747 $this->setVersion($matches[1]);
760 $this->setVersion($matches[1]);
773 $this->setVersion($matches[1]);
786 $this->setVersion($matches[2]);
805 if( preg_match("/Firefox[\/ \(]([^ ;\)]+)/i",$this->_agent,$matches) ) {
806 $this->setVersion($matches[1]);
810 else if( preg_match("/Firefox$/i",$this->_agent,$matches) ) {
[all …]
/plugin/statistics/inc/
H A DBrowscap.php318 if (preg_match($pattern . 'i', $user_agent, $matches)) {
319 if (1 == count($matches)) {
328 array_shift($matches);
330 $match_string = self::COMPRESSION_PATTERN_START . implode(self::COMPRESSION_PATTERN_DELIMITER, $matches);
345 $this->_pregUnQuote($pattern, $simple_match ? false : $matches)
536 $matches_count = preg_match_all('@\d@', $pattern, $matches);
547 $tmp_patterns[$compressed_pattern][$i] = $matches[0];
620 * All numbers are taken out into $matches, so we check if any of those numbers are identical
621 * in all the $matches and if they are we restore them to the $pattern, removing from the $matches
629 deduplicateCompressionPattern($matches, & $pattern) global() argument
692 _pregUnQuote($pattern, $matches) global() argument
[all...]
/plugin/strata/
H A Daction.php182 if(preg_match('/^plugin_strata_(type|aggregate)_(.*)$/',$fullname, $matches)) {
184 list(,$kind,$name) = $matches;
H A Dmanual.txt120 **Optional matches**: Normally, all patterns must be matched for the results to be shown. You can use an ''optional'' block to indicate that some of the patterns are optional, and need not be matched for the results to be shown. All patterns in an optional block must match for the optional block to be used. If any pattern in the block doesn't match, none of the patterns in the block will be used.
257 You can use simple filters to refine any matches from a pattern.
/plugin/strata/syntax/
H A Dinfo.php48 if(preg_match("@/([^/]+)/${kind}s/([^/]+)\.php@",$type,$matches)) {
51 case 'type': $meta = $this->util->loadType($matches[2])->getInfo(); break;
52 case 'aggregate': $meta = $this->util->loadAggregate($matches[2])->getInfo(); break;
58 'name'=>$matches[2],
59 'plugin'=>$matches[1],
/plugin/struct/action/
H A Dmigration.php403 $matches = [];
410 preg_match('/^\["",(?<pid>.*?\D+.*?)\]$/', $value, $matches);
411 if (!empty($matches['pid'])) {
412 $fixes[$col] = '["' . $matches['pid'] . '",0]';
/plugin/struct/helper/
H A Dfield.php128 * @param $matches
131 public function replacementMultiValueCallback($matches) argument
137 if (isset($matches['default']) && $matches['default'] != '') {
138 return $matches['default'];
140 return $matches[0];
148 $delimiter = preg_match('/\(.*\)/s', $matches[0]) ? $matches['delimiter'] : ', ';

1...<<414243444546