Home
last modified time | relevance | path

Searched refs:matches (Results 51 – 75 of 140) sorted by relevance

123456

/PHP-5.5/ext/standard/tests/http/
H A Dserver.inc63 if (preg_match(b'#^Content-Length\s*:\s*([[:digit:]]+)\s*$#i', $line, $matches)) {
64 $content_length = (int) $matches[1];
/PHP-5.5/ext/mysql/tests/
H A Dmysql_field_flags.phpt46 if (!preg_match('@(\d+)\.(\d+)\.(\d+)@ism', $version, $matches))
48 $version = ($matches[1] * 1000) + ($matches[2] * 100) + $matches[3];
/PHP-5.5/Zend/tests/
H A Dclosure_048.phpt8 $c = function($matches) use (&$params, &$text) {
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_pconn_max_links.phpt71 if (!preg_match('@Active Persistent Links\s+=>\s+(\d+)@ismU', $phpinfo, $matches))
73 $num_plinks = $matches[1];
123 if (!preg_match('@Active Persistent Links\s+=>\s+(\d+)@ismU', $phpinfo, $matches))
126 $num_plinks_kill = $matches[1];
153 if (!preg_match('@Active Persistent Links\s+=>\s+(\d+)@ismU', $phpinfo, $matches))
156 $num_plinks = $matches[1];
/PHP-5.5/ext/filter/
H A Dlogical_filters.c424 int matches; in php_filter_validate_regexp() local
439 matches = pcre_exec(re, NULL, Z_STRVAL_P(value), Z_STRLEN_P(value), 0, 0, ovector, 3); in php_filter_validate_regexp()
442 if (matches < 0) { in php_filter_validate_regexp()
535 int matches; in php_filter_validate_email() local
547 matches = pcre_exec(re, NULL, Z_STRVAL_P(value), Z_STRLEN_P(value), 0, 0, ovector, 3); in php_filter_validate_email()
550 if (matches < 0) { in php_filter_validate_email()
/PHP-5.5/ext/mbstring/tests/
H A Dmb_ereg2.phpt2 mb_ereg() returning matches
H A Dmb_ereg4.phpt2 mb_ereg() returning matches
H A Dmb_ereg3.phpt2 mb_ereg() returning matches
/PHP-5.5/ext/spl/internal/
H A Dregexiterator.inc27 const ALL_MATCHES = 2; /**< Mode: Return all matches (if any) */
70 $matches = array();
78 return preg_match($this->regex, $subject, $matches, $this->preg_flags);
/PHP-5.5/ext/ereg/tests/
H A Dereg_basic_003.phpt12 * Test a long RE with lots of matches
H A Deregi_basic_003.phpt12 * Test a long RE with lots of matches
H A Deregi_basic.phpt25 …); //character class lower should just match [a-z] but in case insensitive search matches [a-zA-Z]
H A Deregi_replace_basic_002.phpt2 Test eregi_replace() function : basic functionality - a few non-matches
H A Dspliti_basic_003.phpt2 Test spliti() function : basic functionality - a few non-matches
H A Deregi_basic_004.phpt2 Test eregi() function : basic functionality - a few non-matches
H A Dereg_replace_basic_002.phpt2 Test ereg_replace() function : basic functionality - a few non-matches
/PHP-5.5/ext/pcre/tests/
H A Dpreg_match_all_error1.phpt27 var_dump(preg_match_all($regex_value, $subject, $matches));
28 var_dump($matches);
/PHP-5.5/ext/oci8/tests/
H A Dbind_char_2_11gR1.phpt8 if (preg_match('/Release 11\.1\./', oci_server_version($c), $matches) !== 1) {
9 if (preg_match('/Release 11\.2\.0\.3/', oci_server_version($c), $matches) !== 1) {
H A Dbind_char_2.phpt8 if (preg_match('/Release 10\.2\./', oci_server_version($c), $matches) !== 1) {
9 if (preg_match('/Release 11\.2\.0\.2/', oci_server_version($c), $matches) !== 2) {
H A Dbug27303_2.phpt8 if (preg_match('/Release 10\.2\.0\.2/', oci_server_version($c), $matches) !== 1 &&
9 preg_match('/Release 11\.2\.0\.2/', oci_server_version($c), $matches) !== 1) {
H A Dbug27303_4.phpt8 if (preg_match('/Release 10\.2\.0\.2/', oci_server_version($c), $matches) !== 1 &&
9 preg_match('/Release 11\.2\.0\.2/', oci_server_version($c), $matches) !== 1) {
H A Dbug27303_1.phpt8 if (preg_match('/Release 10\.2\.0\.2/', oci_server_version($c), $matches) !== 1 &&
9 preg_match('/Release 11\.2\.0\.2/', oci_server_version($c), $matches) !== 1) {
/PHP-5.5/ext/spl/examples/
H A Dregexfindfile.inc32 /** @return whether the current filename matches the regular expression.
/PHP-5.5/ext/pspell/tests/
H A D001.phpt24 $string .= "Ahh, matches!";
116 matches : true
/PHP-5.5/scripts/dev/
H A Dcheck_parameters.php203 …?:_ex\s*\([^,]+,[^,]+|\s*\([^,]+),\s*"([^"]*)"\s*,\s*([^{;]*)/S', $txt, $matches, PREG_SET_ORDER |…
207 foreach ($matches as $m) {

Completed in 78 milliseconds

123456