/PHP-7.3/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-7.3/ext/pcre/tests/ |
H A D | bug61780_1.phpt | 5 preg_match('/(4)?(2)?\d/', '23456', $matches, PREG_UNMATCHED_AS_NULL); 6 var_export($matches); 8 preg_match('/(4)?(2)?\d/', '23456', $matches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_NULL); 9 var_export($matches); 11 preg_match_all('/(4)?(2)?\d/', '123456', $matches, PREG_UNMATCHED_AS_NULL); 12 var_export($matches); 14 preg_match_all('/(4)?(2)?\d/', '123456', $matches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_NULL); 15 var_export($matches); 17 preg_match_all('/(4)?(2)?\d/', '123456', $matches, PREG_SET_ORDER | PREG_UNMATCHED_AS_NULL); 18 var_export($matches); [all …]
|
H A D | bug61780_2.phpt | 5 preg_match('/(?<a>4)?(?<b>2)?\d/', '23456', $matches, PREG_UNMATCHED_AS_NULL); 6 var_export($matches); 8 preg_match('/(?<a>4)?(?<b>2)?\d/', '23456', $matches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_NULL); 9 var_export($matches); 11 preg_match_all('/(?<a>4)?(?<b>2)?\d/', '123456', $matches, PREG_UNMATCHED_AS_NULL); 12 var_export($matches); 14 preg_match_all('/(?<a>4)?(?<b>2)?\d/', '123456', $matches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_… 15 var_export($matches); 17 preg_match_all('/(?<a>4)?(?<b>2)?\d/', '123456', $matches, PREG_SET_ORDER | PREG_UNMATCHED_AS_NULL); 18 var_export($matches); [all …]
|
H A D | marks.phpt | 15 var_dump(preg_match($regex, '_c_', $matches)); 16 var_dump($matches); 18 var_dump(preg_match_all($regex, '_a__b__c__d_', $matches, PREG_PATTERN_ORDER)); 19 var_dump($matches); 21 var_dump(preg_match_all($regex, '_a__b__c__d_', $matches, PREG_SET_ORDER)); 22 var_dump($matches); 24 var_dump(preg_replace_callback($regex, function($matches) { 25 var_dump($matches); 26 return $matches[0];
|
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 | bug72688.phpt | 2 Bug #72688 (preg_match missing group names in matches) 12 preg_match($fullPattern, '290', $matches); 14 var_dump($matches['group290']);
|
H A D | bug66121.phpt | 12 preg_match_all('/(?<!ක)/u', 'ම', $matches, PREG_OFFSET_CAPTURE); 13 var_dump($matches); 17 var_dump(preg_match_all('/(?<!ක)/u', "\xFCම", $matches, PREG_OFFSET_CAPTURE)); 18 var_dump(preg_match_all('/(?<!ක)/u', "\xFCම", $matches, PREG_OFFSET_CAPTURE));
|
/PHP-7.3/ext/oci8/tests/ |
H A D | driver_name.phpt | 10 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); 11 if (!(isset($matches[0]) && ($matches[1] > 12 || 12 ($matches[1] == 12 && $matches[2] == 1 && $matches[3] >= 0 13 && $matches[4] >= 2) || ($matches[1] == 12 && $matches[2] > 1)))) { 17 ….([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches); 18 if (!(isset($matches[0]) && ($matches[1] == 11 && $matches[2] >= 2) || ($matches[1] > 11))) {
|
H A D | bug47281.phpt | 9 ….([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches); 10 if (!isset($matches[0]) || 11 …($matches[1] > 11 || ($matches[1] == 11 && $matches[2] > 2) || ($matches[1] == 11 && $matches[2] =…
|
H A D | imp_res_get_none.phpt | 8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); 9 if (!(isset($matches[0]) && $matches[1] >= 12)) { 12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches); 13 if (!(isset($matches[0]) && $matches[0] >= 12)) {
|
H A D | driver_name_11gR2.phpt | 10 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); 11 if (!(isset($matches[0]) && ($matches[1] == 11 && $matches[2] >= 2))) { 14 ….([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches); 15 if (!(isset($matches[0]) && ($matches[1] == 11 && $matches[2] >= 2) || ($matches[1] > 11))) {
|
H A D | error_bind_3.phpt | 8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); 9 if (!(isset($matches[0]) && $matches[1] >= 12)) { 12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches); 13 if (!(isset($matches[0]) && $matches[0] >= 12)) {
|
H A D | imp_res_get_exec.phpt | 8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); 9 if (!(isset($matches[0]) && $matches[1] >= 12)) { 12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches); 13 if (!(isset($matches[0]) && $matches[0] >= 12)) {
|
H A D | imp_res_get_cancel.phpt | 8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); 9 if (!(isset($matches[0]) && $matches[1] >= 12)) { 12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches); 13 if (!(isset($matches[0]) && $matches[0] >= 12)) {
|
H A D | imp_res_cancel.phpt | 8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches); 9 if (!(isset($matches[0]) && $matches[1] >= 12)) { 12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches); 13 if (!(isset($matches[0]) && $matches[0] >= 12)) {
|
/PHP-7.3/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 | 13 $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 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));
|
/PHP-7.3/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-7.3/Zend/tests/ |
H A D | bug63055.phpt | 14 $matches = array("foo" => "bar"); /* this bucket will trigger the segfault */ 18 $matches[1] = &$matches; 19 $matches[2] = $dummy; 21 str_replace("foo", "bar", "foobar", $matches);
|
/PHP-7.3/ext/standard/html_tables/ |
H A D | html_table_gen.php | 188 if (preg_match("/^0x([0-9A-Z]{2})\t0x([0-9A-Z]{2,})/i", $l, $matches)) 189 $map[] = array($matches[1], $matches[2]); 331 if (preg_match("/^0x([0-9A-Z]{2})\t0x([0-9A-Z]{2,})\s+#\s*(.*)$/i", $l, $matches)) 332 $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]);
|