Home
last modified time | relevance | path

Searched refs:matches (Results 101 – 125 of 184) sorted by relevance

12345678

/PHP-7.2/ext/pcre/tests/
H A Dbug74873.phpt5 var_dump(preg_match('/\S+/', 'foo bar', $matches, 0, 99999));
H A Dpreg_replace_callback_error.phpt16 function integer_word($matches) {
18 return $replacement[$matches[0]];
H A Dpreg_replace_callback_error1.phpt20 function integer_word($matches) {
22 return $replacement[$matches[0]];
/PHP-7.2/ext/oci8/tests/
H A Dconn_attr_5.phpt11 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
12 if (!(isset($matches[0]) && $matches[1] >= 10)) {
H A Dbind_char_2_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dbind_char_2.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
H A Dini_1.phpt6 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
7 if (!(isset($matches[0]) && $matches[0] >= 11)) {
H A Dbug27303_1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
H A Dbug27303_1_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dbug27303_2.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
H A Dbug27303_2_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dbug27303_4.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
H A Dbug27303_4_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dconn_attr_3.phpt11 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
12 if (!(isset($matches[0]) && $matches[1] >= 10)) {
H A Dconn_attr_1.phpt12 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
13 if (!(isset($matches[0]) && $matches[1] >= 10)) {
H A Dimp_res_1.phpt8 …[: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 Dconn_attr_2.phpt11 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
12 if (!(isset($matches[0]) && $matches[1] >= 10)) {
/PHP-7.2/scripts/dev/
H A Dcheck_parameters.php204 if (preg_match_all($regex, $txt, $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE)) {
208 foreach ($matches as $m) {
316 $txt = preg_replace_callback('@/\*.*\*/@SsU', function($matches) {
317 return preg_replace("/[^\r\n]+/S", "", $matches[0]);
/PHP-7.2/Zend/
H A Dzend_vm_gen.php838 function($matches) use ($spec, $prefix, $op1, $op2, $extra_spec) {
845 if (isset($matches[2])) {
862 function($matches) use ($spec, $prefix, $op1, $op2, $extra_spec) {
866 return "goto " . opcode_name($matches[1], $spec, $op1, $op2) . "_LABEL";
869 if (isset($matches[2])) {
874 return "goto " . helper_name($matches[1], $spec, $op1, $op2, $extra_spec);
886 function($matches) use ($spec, $prefix, $op1, $op2, $extra_spec) {
890 return "goto " . opcode_name($matches[1], $spec, $op1, $op2) . "_LABEL";
893 if (isset($matches[2])) {
908 foreach ($matches as $match) {
[all …]
/PHP-7.2/ext/fileinfo/tests/
H A Dbug68398.phpt2 Bug #68398: msooxml matches too many archives
/PHP-7.2/tests/lang/
H A Dbug26696.phpt2 Bug #26696 (string index in a switch() crashes with multiple matches)
/PHP-7.2/Zend/tests/
H A Dclosure_047.phpt8 preg_replace_callback( '/(\?)/', function($matches) use (&$params, &$text) {
H A Dclosure_048.phpt8 $c = function($matches) use (&$params, &$text) {
/PHP-7.2/ext/mbstring/tests/
H A Dmb_ereg2.phpt2 mb_ereg() returning matches
/PHP-7.2/ext/standard/tests/http/
H A Dserver.inc71 if (preg_match('#^Content-Length\s*:\s*([[:digit:]]+)\s*$#i', $line, $matches)) {
72 $content_length = (int) $matches[1];

Completed in 36 milliseconds

12345678