Searched refs:mb_ereg_match (Results 1 – 4 of 4) sorted by relevance
/PHP-7.1/ext/mbstring/tests/ |
H A D | mb_ereg_match_error1.phpt | 6 function_exists('mb_ereg_match') or die("skip mb_ereg_match() is not available in this build"); 16 * Test mb_ereg_match by passing an incorrect number of arguments 19 echo "*** Testing mb_ereg_match() : error conditions ***\n"; 22 //Test mb_ereg_match with one more than the expected number of arguments 28 var_dump( mb_ereg_match($pattern, $string, $option, $extra_arg) ); 33 var_dump( mb_ereg_match($pattern) ); 35 // Testing mb_ereg_match with zero arguments 36 echo "\n-- Testing mb_ereg_match() function with zero arguments --\n"; 37 var_dump( mb_ereg_match() ); 42 *** Testing mb_ereg_match() : error conditions *** [all …]
|
H A D | mb_ereg_match_basic.phpt | 2 Test mb_ereg_match() function : basic functionality 6 function_exists('mb_ereg_match') or die("skip mb_ereg_match() is not available in this build"); 10 /* Prototype : bool mb_ereg_match(string $pattern, string $string [,string $option]) 16 * Test basic functionality of mb_ereg_match 22 echo "*** Testing mb_ereg_match() : basic functionality ***\n"; 28 var_dump(mb_ereg_match(b'.*def', $string_ascii)); 32 var_dump(mb_ereg_match(b'def', $string_ascii)); 36 var_dump(mb_ereg_match($regex1, $string_mb, b'i')); 40 var_dump(mb_ereg_match($regex2, $string_mb)); 45 *** Testing mb_ereg_match() : basic functionality ***
|
/PHP-7.1/ext/mbstring/ |
H A D | php_mbregex.h | 39 PHP_FE(mb_ereg_match, arginfo_mb_ereg_match) \ 53 PHP_FALIAS(mbereg_match, mb_ereg_match, arginfo_mb_ereg_match) \ 87 PHP_FUNCTION(mb_ereg_match);
|
H A D | php_mbregex.c | 1180 PHP_FUNCTION(mb_ereg_match) in PHP_FUNCTION() argument
|
Completed in 10 milliseconds