Home
last modified time | relevance | path

Searched refs:matches (Results 126 – 150 of 184) sorted by relevance

12345678

/PHP-7.2/ext/mbstring/tests/
H A Dmb_ereg3.phpt2 mb_ereg() returning matches
H A Dmb_ereg4.phpt2 mb_ereg() returning matches
H A Dmb_ereg_match_basic.phpt26 //will return true as pattern matches from start of string
/PHP-7.2/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-7.2/ext/mysqli/tests/
H A Dmysqli_pconn_max_links.phpt80 if (!preg_match('@Active Persistent Links\s+=>\s+(\d+)@ismU', $phpinfo, $matches))
82 $num_plinks = $matches[1];
138 if (!preg_match('@Active Persistent Links\s+=>\s+(\d+)@ismU', $phpinfo, $matches))
143 $num_plinks_kill = $matches[1];
176 if (!preg_match('@Active Persistent Links\s+=>\s+(\d+)@ismU', $phpinfo, $matches))
179 $num_plinks = $matches[1];
/PHP-7.2/ext/pcre/tests/
H A Dpreg_match_all_error1.phpt27 var_dump(preg_match_all($regex_value, $subject, $matches));
28 var_dump($matches);
H A Dpreg_match_all_error.phpt20 var_dump(preg_match_all($pattern, $subject, $matches, $flags, $offset, $extra_arg));
H A Dpreg_match_error.phpt20 var_dump(preg_match($pattern, $subject, $matches, $flags, $offset, $extra_arg));
/PHP-7.2/ext/oci8/tests/
H A Dconn_attr.inc5 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
6 if ((isset($matches[1]) && $matches[1] >= 11)) {
H A Dbind_sqltnum.phpt6 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
7 if (!(isset($matches[0]) && $matches[0] >= 12)) {
H A Dbind_sqltnum_11g.phpt6 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
7 if (!(isset($matches[0]) && $matches[0] <= 11)) {
H A Dbind_char_1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
H A Dbind_char_1_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dbind_char_3.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
H A Dbind_char_3_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dbind_char_4.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
/PHP-7.2/ext/filter/
H A Dlogical_filters.c435 int matches; in php_filter_validate_regexp() local
449 matches = pcre_exec(re, NULL, Z_STRVAL_P(value), (int)Z_STRLEN_P(value), 0, 0, ovector, 3); in php_filter_validate_regexp()
452 if (matches < 0) { in php_filter_validate_regexp()
605 int matches; in php_filter_validate_email() local
632 matches = pcre_exec(re, NULL, Z_STRVAL_P(value), (int)Z_STRLEN_P(value), 0, 0, ovector, 3); in php_filter_validate_email()
635 if (matches < 0) { in php_filter_validate_email()
/PHP-7.2/ext/spl/examples/
H A Dregexfindfile.inc32 /** @return whether the current filename matches the regular expression.
H A Dfindfile.inc48 /** @return whether the current file matches the given filename
/PHP-7.2/ext/pspell/tests/
H A D001.phpt24 $string .= "Ahh, matches!";
116 matches : true
/PHP-7.2/ext/pcre/pcrelib/doc/
H A Dpcre.txt4177 matches are all initial substrings of the longer matches. For example,
4593 Pattern PCRE matches Perl matches
4981 Pattern PCRE matches Perl matches
5233 \d matches only decimal digits, whereas \w matches any Unicode digit,
5587 one matches \w and the other matches \W), or the start or end of the
6243 matches. Thus
6991 First it matches an opening parenthesis. Then it matches any number of
7341 This matches "AB", "AAD", or "ACD"; when it matches "AB", "B" is cap-
8323 matches.
8406 complete matches. If you want to run partial matches using the
[all …]
/PHP-7.2/ext/openssl/tests/
H A Dsan_peer_matching.phpt2 Peer verification matches SAN names
/PHP-7.2/ext/mbstring/oniguruma/src/
H A Donigposix.h155 ONIG_EXTERN int regexec P_((regex_t* reg, const char* str, size_t nmatch, regmatch_t* matches, i…
/PHP-7.2/ext/mbstring/oniguruma/doc/
H A DRE200 m: multi-line (dot (.) also matches newline)
344 (?m): dot (.) also matches newline
347 (?s): dot (.) also matches newline
348 (?m): ^ matches after newline, $ matches before newline
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A DtestinputEBC77 for DFA matching (otherwise it may show multiple matches). --/

Completed in 66 milliseconds

12345678