Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 25 of 128) sorted by relevance

123456

/PHP-5.3/ext/intl/tests/
H A Dlocale_filter_matches.phpt80 loc_range:de-de matches lang_tag de-DEVA ? NO
86 loc_range:de-de matches lang_tag de-DE ? YES
95 loc_range:de-de matches lang_tag sl_IT ? NO
116 loc_range:de-de matches lang_tag i-lux ? NO
122 loc_range:de-de matches lang_tag jbo ? NO
134 loc_range:sl_IT matches lang_tag de-DE ? NO
170 loc_range:sl_IT matches lang_tag jbo ? NO
230 loc_range:jbo matches lang_tag de-DE ? NO
239 loc_range:jbo matches lang_tag sl_IT ? NO
260 loc_range:jbo matches lang_tag i-lux ? NO
[all …]
H A Dlocale_filter_matches2.phpt80 loc_range:de-de matches lang_tag de-DEVA ? NO
86 loc_range:de-de matches lang_tag de-DE ? YES
95 loc_range:de-de matches lang_tag sl_IT ? NO
116 loc_range:de-de matches lang_tag i-lux ? NO
122 loc_range:de-de matches lang_tag jbo ? NO
134 loc_range:sl_IT matches lang_tag de-DE ? NO
170 loc_range:sl_IT matches lang_tag jbo ? NO
230 loc_range:jbo matches lang_tag de-DE ? NO
239 loc_range:jbo matches lang_tag sl_IT ? NO
260 loc_range:jbo matches lang_tag i-lux ? NO
[all …]
/PHP-5.3/ext/pdo_mysql/tests/
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_41997.phpt11 $matches = array();
12 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
15 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
18 $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_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_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));
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 Dpdo_mysql_attr_server_version.phpt26 if (!preg_match('/(\d+)\.(\d+)\.(\d+)(.*)/', $version, $matches))
34 if ($matches[1] < 3)
35 printf("[003] Strange major version: '%s'. Should be more than 3\n", $matches[1]);
36 if ($matches[2] < 0)
37 printf("[004] Minor version should be at least 0, got '%s'\n", $matches[2]);
38 if ($matches[3] < 0)
39 printf("[005] Sub version should be at least 0, got '%s'\n", $matches[2]);
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 Dpdo_mysql_stmt_variable_columncount.phpt11 $matches = array();
12 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
15 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
18 $matches[0], $matches[1], $matches[2], $version));
/PHP-5.3/ext/pcre/tests/
H A Dbug63055.phpt12 $matches = array("foo" => "bar"); /* this bucket will trigger the segfault */
16 $matches[1] = &$matches;
17 $matches[2] = $dummy;
19 preg_match_all("/(\d)+/", "foo123456bar", $matches);
H A Dpreg_match_basic_002.phpt5 /* Prototype : int preg_match ( string $pattern , string $subject [, array &$matches [, int $f…
11 preg_match("/M(.*)/", $string, $matches);
13 var_dump($matches);
H A Dbug27011.phpt6 var_dump(preg_match_all('|(\w+)://([^\s"<]*[\w+#?/&=])|', "This is a text string", $matches, PREG_S…
7 var_dump($matches);
H A Dpreg_match_all_error2.phpt16 var_dump(preg_match_all($regex, $value, $matches));
17 var_dump($matches);
21 var_dump(preg_match_all($regex, $value, $matches));
22 var_dump($matches);
H A Dpreg_grep_basic.phpt11 …TP(.*?)\w{2,}$@i', $array)); //finds a string starting with http (regardless of case) (matches two)
12 …-Z and 0-9, followed by zero or more . followed by zero or more / all more than once. (matches all)
13 … not followed by 3 characters that aren't w's then anything to the end of the sttring (matches one)
14 var_dump(preg_grep('@.*?\.co\.uk$@i', $array)); //finds any address ending in .co.uk (matches none)
15 …example but the array created contains everything that is NOT matched but the regex (matches three)
H A Dbug34790.phpt7 preg_match_all('/(?P<word>the)/', $string, $matches);
8 return $matches['word'];
/PHP-5.3/Zend/tests/
H A Dbug63055.phpt12 $matches = array("foo" => "bar"); /* this bucket will trigger the segfault */
16 $matches[1] = &$matches;
17 $matches[2] = $dummy;
19 str_replace("foo", "bar", "foobar", $matches);
H A Dclosure_008.phpt7 $lambda = function ($matches) {
8 return str_replace(' ', '&nbsp;', $matches[1]).' ';
/PHP-5.3/ext/pdo_mysql/
H A Dget_error_codes.php8 …reg('^\{[[:space:]]+(ER_.*)[[:space:]]+,[[:space:]]*"(.*)",[[:space:]]*"(.*)"', $line, $matches)) {
9 $codes[$matches[1]] = $matches[2];
10 $maxlen = max($maxlen, strlen($matches[1]));
/PHP-5.3/ext/mysql/tests/
H A Dmysql_constants.phpt26 if (!preg_match('@(\d+)\.(\d+)\.(\d+)@ism', $version, $matches))
28 $version = ($matches[1] * 100) + ($matches[2] * 10) + $matches[3];
/PHP-5.3/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.3/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt105 if (!preg_match("@^(\d+):+@ismU", $line, $matches)) {
108 if (!isset($matches[1]) || ((int)$matches[1] > 1)) {
110 $matches[1],
121 if (preg_match("@^[|\s]*>[\w]+@ism", $line, $matches)) {
132 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
133 $functions_all_funcs[$matches[1]] = $matches[1];
141 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
142 $functions_trace[$matches[1]] = $matches[1];
177 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
178 $functions_trace[$matches[1]] = $matches[1];
[all …]
H A Dmysqli_debug_mysqlnd_only.phpt83 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
84 $functions_trace[$matches[1]] = $matches[1];
105 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
106 $functions_trace[$matches[1]] = $matches[1];
/PHP-5.3/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']

Completed in 35 milliseconds

123456