/PHP-5.4/ext/intl/tests/ |
H A D | locale_filter_matches.phpt | 80 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 D | locale_filter_matches2.phpt | 81 loc_range:de-de matches lang_tag de-DEVA ? NO 87 loc_range:de-de matches lang_tag de-DE ? YES 96 loc_range:de-de matches lang_tag sl_IT ? NO 117 loc_range:de-de matches lang_tag i-lux ? NO 123 loc_range:de-de matches lang_tag jbo ? NO 135 loc_range:sl_IT matches lang_tag de-DE ? NO 171 loc_range:sl_IT matches lang_tag jbo ? NO 231 loc_range:jbo matches lang_tag de-DE ? NO 240 loc_range:jbo matches lang_tag sl_IT ? NO 261 loc_range:jbo matches lang_tag i-lux ? NO [all …]
|
H A D | locale_filter_matches3.phpt | 80 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.4/ext/pdo_mysql/tests/ |
H A D | bug_61411.phpt | 12 $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 D | bug_41997.phpt | 11 $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 D | bug_41125.phpt | 11 $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 D | bug_pecl_7976.phpt | 12 $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 D | bug_39858.phpt | 12 $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 D | bug_44707.phpt | 14 $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 D | pdo_mysql_attr_server_version.phpt | 26 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 D | bug_42499.phpt | 14 $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 D | pdo_mysql_stmt_variable_columncount.phpt | 11 $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.4/ext/pcre/tests/ |
H A D | bug63055.phpt | 12 $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 D | preg_match_basic_002.phpt | 5 /* Prototype : int preg_match ( string $pattern , string $subject [, array &$matches [, int $f… 11 preg_match("/M(.*)/", $string, $matches); 13 var_dump($matches);
|
H A D | preg_match_all_error2.phpt | 16 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 D | bug27011.phpt | 6 var_dump(preg_match_all('|(\w+)://([^\s"<]*[\w+#?/&=])|', "This is a text string", $matches, PREG_S… 7 var_dump($matches);
|
H A D | preg_grep_basic.phpt | 11 …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)
|
/PHP-5.4/Zend/tests/ |
H A D | bug63055.phpt | 12 $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 D | closure_008.phpt | 7 $lambda = function ($matches) { 8 return str_replace(' ', ' ', $matches[1]).' ';
|
/PHP-5.4/ext/pdo_mysql/ |
H A D | get_error_codes.php | 8 …reg('^\{[[:space:]]+(ER_.*)[[:space:]]+,[[:space:]]*"(.*)",[[:space:]]*"(.*)"', $line, $matches)) { 9 $codes[$matches[1]] = $matches[2]; 10 $maxlen = max($maxlen, strlen($matches[1]));
|
/PHP-5.4/ext/standard/html_tables/ |
H A D | html_table_gen.php | 187 if (preg_match("/^0x([0-9A-Z]{2})\t0x([0-9A-Z]{2,})/i", $l, $matches)) 188 $map[] = array($matches[1], $matches[2]); 330 if (preg_match("/^0x([0-9A-Z]{2})\t0x([0-9A-Z]{2,})\s+#\s*(.*)$/i", $l, $matches)) 331 $map[] = array($matches[1], $matches[2], rtrim($matches[3])); 426 if (preg_match('/^(#?[a-z0-9]+)\s+([a-f0-9]+) ([a-f0-9]+)/i', $l, $matches)) { 428 $dp[] = array($matches[1], $matches[2], $matches[3]); 429 } else if (preg_match('/^(#?[a-z0-9]+)\s+([a-f0-9]+)/i', $l, $matches)) { 430 $dp[] = array($matches[1], $matches[2]);
|
/PHP-5.4/ext/mysql/tests/ |
H A D | mysql_constants.phpt | 26 if (!preg_match('@(\d+)\.(\d+)\.(\d+)@ism', $version, $matches)) 28 $version = ($matches[1] * 100) + ($matches[2] * 10) + $matches[3];
|
/PHP-5.4/ext/standard/tests/general_functions/ |
H A D | proc_nice_basic.phpt | 17 preg_match('/^\s*\w+\s+\w+\s*(\d+)\s+(\d+)/m', $res, $matches); 18 if (count($matches) > 2) 19 return $matches[2];
|
/PHP-5.4/ext/mysqli/tests/ |
H A D | mysqli_debug_mysqlnd_control_string.phpt | 105 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 D | mysqli_debug_mysqlnd_only.phpt | 83 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];
|