/PHP-7.3/ext/gd/libgd/ |
H A D | gd_crop.c | 122 match = 1; in gdImageCropAuto() 131 if (match) { in gdImageCropAuto() 137 match = 1; in gdImageCropAuto() 145 match = 1; in gdImageCropAuto() 153 match = 1; in gdImageCropAuto() 192 int match; in gdImageCropThreshold() local 213 match = 1; in gdImageCropThreshold() 221 if (match) { in gdImageCropThreshold() 227 match = 1; in gdImageCropThreshold() 235 match = 1; in gdImageCropThreshold() [all …]
|
/PHP-7.3/ext/pcre/tests/ |
H A D | match_flags.phpt | 6 var_dump(preg_match_all('/(.)x/', 'zxax', $match, PREG_PATTERN_ORDER)); 7 var_dump($match); 9 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER)); 10 var_dump($match); 12 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_OFFSET_CAPTURE)); 13 var_dump($match); 15 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE)); 16 var_dump($match);
|
H A D | match_flags3.phpt | 6 var_dump(preg_match('', '', $match, 0xfff)); 8 var_dump(preg_match('/\d+/', '123 456 789 012', $match, 0, -8)); 9 var_dump($match); 11 var_dump(preg_match('/\d+/', '123 456 789 012', $match, 0, -500)); 12 var_dump($match); 14 var_dump(preg_match_all('/\d+/', '123 456 789 012', $match, 0, -8)); 15 var_dump($match);
|
H A D | match_flags2.phpt | 6 var_dump(preg_match('/x(.)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE)); 7 var_dump($match); 9 var_dump(preg_match('/(.)x/', 'fjszxax', $match, PREG_OFFSET_CAPTURE, 4)); 10 var_dump($match); 12 var_dump(preg_match('/(?P<capt1>.)(x)(?P<letsmix>\S+)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE)); 13 var_dump($match);
|
H A D | bug52971.phpt | 9 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE); 10 var_dump($match); 13 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE); 14 var_dump($match);
|
H A D | bug40909.phpt | 10 $match = array(); 12 if ($result =preg_match_all($pattern, $context, $match)) 16 var_dump($match);
|
H A D | bug37911.phpt | 6 function callback($match) 8 var_dump($match); 9 return $match[1].'/'.strlen($match['name']);
|
H A D | bug44214_2.phpt | 9 function myCallBack( $match ) { 11 $array[] = $match[0];
|
H A D | bug44214.phpt | 9 function myCallBack( $match ) { 11 $array[] = $match;
|
H A D | preg_match_basic_002.phpt | 2 preg_match() single line match with multi-line input 6 * Description: Perform a regular expression match
|
H A D | preg_match_latin.phpt | 2 preg_match() single line match with latin input 6 * Description: Perform a regular expression match
|
H A D | preg_match_all_edit_basic.phpt | 6 * Description: Perform a Perl-style global regular expression match 13 …PATTERN_ORDER, -10)); //finds any digit that's not 4 10 digits from the end(1 match) 19 … //finds ".\ [...]" and everything else to the end of the string. (greedy) (1 match)
|
/PHP-7.3/ext/zlib/tests/ |
H A D | func.inc | 11 //if (preg_match(',zlib.*Compiled Version => (\d+\.\d+\.\d+),s', $info, $match)) { 12 // $version = $match[1]; 13 …if (preg_match(',zlib(?!.*libXML).*Compiled Version (=> |</).*(\d+\.\d+\.\d+?),sU', $info, $match)… 14 $version = $match[2];
|
/PHP-7.3/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_sjis_mobile.c | 260 match = 1; in mbfilter_conv_map_tbl() 264 return match; in mbfilter_conv_map_tbl() 275 match = 1; in mbfilter_conv_r_map_tbl() 279 return match; in mbfilter_conv_r_map_tbl() 420 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 423 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 426 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 447 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 453 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 459 match = 1; in mbfilter_unicode2sjis_emoji_docomo() [all …]
|
/PHP-7.3/ext/imap/tests/ |
H A D | clean.inc | 16 if (preg_match('/\{.*?\}INBOX\.(.+)/', $value->name, $match) == 1) { 17 if (strlen($match[1]) >= strlen($mailbox_prefix) 18 && substr_compare($match[1], $mailbox_prefix, 0, strlen($mailbox_prefix)) == 0) {
|
/PHP-7.3/ext/gd/tests/ |
H A D | func.inc | 22 if (preg_match(',FreeType Version => (\d+\.\d+\.\d+),s', get_php_info(), $match)) { 23 $version = $match[1]; 33 if (preg_match(',libJPEG Version => ([a-z0-9]+),s', get_php_info(), $match)) { 34 $version = $match[1]; 44 if (preg_match(',libPNG Version => (\d+\.\d+\.\d+),s', get_php_info(), $match)) { 45 $version = $match[1]; 55 if (preg_match(',libXpm Version => (\d+),s', get_php_info(), $match)) { 56 $version = $match[1];
|
/PHP-7.3/ext/standard/tests/strings/ |
H A D | explode_variation4.phpt | 2 Test explode() function : usage variations - match longer string 11 echo "*** Testing explode() function: match longer string ***\n"; 19 *** Testing explode() function: match longer string ***
|
/PHP-7.3/ext/mbstring/oniguruma/doc/ |
H A D | FAQ | 3 1. Longest match 5 You can execute the longest match by using ONIG_OPTION_FIND_LONGEST option
|
/PHP-7.3/build/ |
H A D | scan_makefile_in.awk | 7 if (match($0, "[^=]*$")) { 15 if (match($0, "[^=]*$")) {
|
H A D | mkdep.awk | 30 if (match($i, "^-[A-Z]") == 0) 58 if (match($0, "^# [0-9]* \".*\.h\"") != 0) {
|
/PHP-7.3/ext/standard/tests/file/ |
H A D | fnmatch_variation.phpt | 27 1 => "match*", 34 8 => "match**", 37 11 => "match", 39 13 => "?match", 40 14 => "match?tmp", 42 16 => "match?", 43 17 => "?match?", 44 18 => "match.tmp", 45 19 => "/match.tmp", 47 21 => 'match.tmp', [all …]
|
H A D | fnmatch_error.phpt | 11 Description: fnmatch() checks if the passed string would match 29 var_dump( fnmatch("match.txt") ); 33 var_dump( fnmatch("match.txt", "match.txt", TRUE, 100) );
|
H A D | symlink_link_linkinfo_is_link_variation9.phpt | 45 // confirming that linkinfo() = lstat['dev'] , this should always match 53 echo "\nWarning: linkinfo() value doesnt match lstat['dev']\n"; 60 // confirming that linkinfo() = lstat['dev'] , this should always match 68 echo "\nWarning: linkinfo() value doesnt match lstat['dev']\n"; 77 // confirming that linkinfo() = lstat['dev'], this should always match 85 echo "\nWarning: linkinfo() value doesnt match lstat['dev']\n";
|
/PHP-7.3/ext/mbstring/tests/ |
H A D | mb_ereg_search_regs.phpt | 19 $match= mb_ereg_search_regs("ов"); 20 var_dump($match);
|
H A D | mb_ereg_variation3.phpt | 2 Test mb_ereg() function : usage variations - pass different character classes to see they match cor… 11 * Description: Regular expression match for multibyte string 16 * test that mb_ereg can match correctly when passed different character classes. 22 mb_regex_encoding('utf-8'); // have to set otherwise won't match $mb properly
|