Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 25 of 140) sorted by last modified time

123456

/PHP-5.5/tests/lang/
H A Dbug26696.phpt2 Bug #26696 (string index in a switch() crashes with multiple matches)
/PHP-5.5/
H A Dserver-tests.php1167 if ($k == 'POST' && preg_match('/^(.*?)\r?\n$/Ds',$v,$matches)) {
1168 $section_text[$k]=$matches[1];
H A Drun-tests.php542 $matches = array(); variable
543 if (preg_match('/^#.*\[(.*)\]\:\s+(.*)$/', $test, $matches)) {
544 $redir_tests[] = array($matches[1], $matches[2]);
/PHP-5.5/scripts/dev/
H A Dcheck_parameters.php203 …?:_ex\s*\([^,]+,[^,]+|\s*\([^,]+),\s*"([^"]*)"\s*,\s*([^{;]*)/S', $txt, $matches, PREG_SET_ORDER |…
207 foreach ($matches as $m) {
/PHP-5.5/ext/zip/
H A Dphp_zip.c678 int matches; in php_zip_pcre() local
708 matches = pcre_exec(re, NULL, namelist[i], strlen(namelist[i]), 0, 0, ovector, 3); in php_zip_pcre()
710 if (matches < 0) { in php_zip_pcre()
/PHP-5.5/ext/standard/tests/http/
H A Dserver.inc63 if (preg_match(b'#^Content-Length\s*:\s*([[:digit:]]+)\s*$#i', $line, $matches)) {
64 $content_length = (int) $matches[1];
/PHP-5.5/ext/standard/tests/general_functions/
H A Dproc_nice_basic.phpt17 preg_match('/^\s*\w+\s+\w+\s*(\d+)\s+(\d+)/m', $res, $matches);
18 if (count($matches) > 2)
19 return $matches[2];
/PHP-5.5/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation9.phpt51 echo "\nlinkinfo() value matches lstat['dev']\n";
66 echo "\nlinkinfo() value matches lstat['dev']\n";
83 echo "\nlinkinfo() value matches lstat['dev']\n";
106 linkinfo() value matches lstat['dev']
113 linkinfo() value matches lstat['dev']
120 linkinfo() value matches lstat['dev']
/PHP-5.5/ext/standard/html_tables/
H A Dhtml_table_gen.php190 if (preg_match("/^0x([0-9A-Z]{2})\t0x([0-9A-Z]{2,})/i", $l, $matches))
191 $map[] = array($matches[1], $matches[2]);
333 if (preg_match("/^0x([0-9A-Z]{2})\t0x([0-9A-Z]{2,})\s+#\s*(.*)$/i", $l, $matches))
334 $map[] = array($matches[1], $matches[2], rtrim($matches[3]));
429 if (preg_match('/^(#?[a-z0-9]+)\s+([a-f0-9]+) ([a-f0-9]+)/i', $l, $matches)) {
431 $dp[] = array($matches[1], $matches[2], $matches[3]);
432 } else if (preg_match('/^(#?[a-z0-9]+)\s+([a-f0-9]+)/i', $l, $matches)) {
433 $dp[] = array($matches[1], $matches[2]);
/PHP-5.5/ext/spl/internal/
H A Dregexiterator.inc27 const ALL_MATCHES = 2; /**< Mode: Return all matches (if any) */
70 $matches = array();
78 return preg_match($this->regex, $subject, $matches, $this->preg_flags);
/PHP-5.5/ext/spl/examples/
H A Dfindfile.inc48 /** @return whether the current file matches the given filename
H A Dregexfindfile.inc32 /** @return whether the current filename matches the regular expression.
/PHP-5.5/ext/readline/
H A Dreadline.c495 char **matches = NULL; in _readline_completion_cb() local
505 matches = rl_completion_matches(text,_readline_command_generator); in _readline_completion_cb()
507 matches = malloc(sizeof(char *) * 2); in _readline_completion_cb()
508 if (!matches) { in _readline_completion_cb()
511 matches[0] = strdup(""); in _readline_completion_cb()
512 matches[1] = '\0'; in _readline_completion_cb()
522 return matches; in _readline_completion_cb()
/PHP-5.5/ext/pspell/tests/
H A D001.phpt24 $string .= "Ahh, matches!";
116 matches : true
/PHP-5.5/ext/phar/phar/
H A Dpharcommand.inc237 $matches = NULL;
238 if (preg_match(",^php[ \t]+([^ \t].*[\\\\/]PHP[\\\\/]Archive\.php)$,", $ent, $matches)) {
239 $sub = $matches[1];
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_variable_columncount.phpt13 $matches = array();
14 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
17 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
20 $matches[0], $matches[1], $matches[2], $version));
H A Dpdo_mysql_stmt_nextrowset.phpt12 $matches = array();
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
16 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
19 $matches[0], $matches[1], $matches[2], $version));
H A Dpdo_mysql_multi_stmt_nextrowset.phpt10 $matches = array();
11 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
14 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
17 $matches[0], $matches[1], $matches[2], $version));
H A Dbug_61411.phpt12 $matches = array();
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
16 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
19 $matches[0], $matches[1], $matches[2], $version));
H A Dbug_39858.phpt12 $matches = array();
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
16 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
19 $matches[0], $matches[1], $matches[2], $version));
H A Dbug_41125.phpt11 $matches = array();
12 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
15 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
19 $matches[0], $matches[1], $matches[2], $version));
H A Dbug_41997.phpt13 $matches = array();
14 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
17 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
20 $matches[0], $matches[1], $matches[2], $version));
H A Dbug_42499.phpt14 $matches = array();
15 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
18 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
21 $matches[0], $matches[1], $matches[2], $version));
H A Dbug_44707.phpt14 $matches = array();
15 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
18 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
21 $matches[0], $matches[1], $matches[2], $version));
H A Dbug_pecl_7976.phpt12 $matches = array();
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
16 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
19 $matches[0], $matches[1], $matches[2], $version));

Completed in 58 milliseconds

123456