Searched refs:PREG_SET_ORDER (Results 1 – 15 of 15) sorted by relevance
/PHP-7.3/ext/pcre/tests/ |
H A D | 004.phpt | 6 …*\w*\s*\])?\s*(?:=[^,;]+)?)*)\s*;/S', 'unsigned int xpto = 124; short a, b;', $m, PREG_SET_ORDER)); 9 …?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', '&a, b, &c', $m, PREG_SET_ORDER)); 12 …*([^{;]*)/S', 'zend_parse_parameters( 0, "addd|s/", a, b, &c);', $m, PREG_SET_ORDER | PREG_OFFSET_…
|
H A D | match_flags.phpt | 9 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER)); 15 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE));
|
H A D | bug61780_1.phpt | 17 preg_match_all('/(4)?(2)?\d/', '123456', $matches, PREG_SET_ORDER | PREG_UNMATCHED_AS_NULL); 20 preg_match_all('/(4)?(2)?\d/', '123456', $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE | PREG_UNMA…
|
H A D | request47456.phpt | 8 preg_match_all('/(?J)(?<chr>[ac])(?<num>\d)|(?<chr>[b])/', 'a1bc3', $m, PREG_SET_ORDER); 12 preg_match_all('/(?<chr>[ac])(?<num>\d)|(?<chr>[b])/J', 'a1bc3', $m, PREG_SET_ORDER);
|
H A D | bug27011.phpt | 6 …eg_match_all('|(\w+)://([^\s"<]*[\w+#?/&=])|', "This is a text string", $matches, PREG_SET_ORDER));
|
H A D | bug61780_2.phpt | 17 preg_match_all('/(?<a>4)?(?<b>2)?\d/', '123456', $matches, PREG_SET_ORDER | PREG_UNMATCHED_AS_NULL); 20 preg_match_all('/(?<a>4)?(?<b>2)?\d/', '123456', $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE | P…
|
H A D | 003.phpt | 6 foreach (array(PREG_PATTERN_ORDER, PREG_SET_ORDER) as $flag) {
|
H A D | marks.phpt | 21 var_dump(preg_match_all($regex, '_a__b__c__d_', $matches, PREG_SET_ORDER));
|
H A D | preg_match_all_edit_basic.phpt | 16 var_dump(preg_match_all('/[tT]his is a(.*?)\./', $string, $match2, PREG_SET_ORDER)); //fin…
|
H A D | preg_match_all_basic.phpt | 12 var_dump(preg_match_all('/[tT]his is a(.*?)\./', $string, $match2, PREG_SET_ORDER)); //finds "This …
|
H A D | 005.phpt | 74 var_dump(preg_match_all($gcc_regex, $sampledata, $m, PREG_SET_ORDER));
|
/PHP-7.3/scripts/dev/ |
H A D | check_parameters.php | 107 …[^,;]+)?((?:\s*,\s*\**\s*\w+(?:\[\s*\w*\s*\])?\s*(?:=[^,;]+)?)*)\s*;/S', $txt, $m, PREG_SET_ORDER); 116 preg_match_all('/(\**)\s*(\w+(?:\[\s*\w*\s*\])?)\s*(=?)/S', $x[6], $y, PREG_SET_ORDER); 159 …_all('/(?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', $str, $m, PREG_SET_ORDER); 201 if (preg_match_all($regex, $txt, $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE)) {
|
/PHP-7.3/sapi/cli/tests/ |
H A D | 006.phpt | 47 Constant [ int PREG_SET_ORDER ] { 2 }
|
/PHP-7.3/ext/pcre/ |
H A D | php_pcre.c | 32 #define PREG_SET_ORDER 2 macro 403 REGISTER_LONG_CONSTANT("PREG_SET_ORDER", PREG_SET_ORDER, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION() 1054 if ((global && (subpats_order < PREG_PATTERN_ORDER || subpats_order > PREG_SET_ORDER)) || in php_pcre_match_impl()
|
/PHP-7.3/Zend/ |
H A D | zend_vm_gen.php | 995 if ($spec && preg_match_all('/^\s*zend_free_op\s+[^;]+;\s*$/m', $code, $matches, PREG_SET_ORDER)) { 2531 …atch_all("/ZEND_VM_DISPATCH_TO_HANDLER\(\s*([A-Z_]*)\s*\)/m", $dsc["code"], $mm, PREG_SET_ORDER)) {
|
Completed in 32 milliseconds