Home
last modified time | relevance | path

Searched refs:preg_match (Results 26 – 50 of 164) sorted by relevance

1234567

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt81 if (!preg_match("@^" . $pid . "*@ismU", $trace))
86 if (!preg_match("@^[\d]+@ismU", $trace))
92 if (!preg_match("@^\s*[/\w\\\\d\.\-]+\.[ch]@ismU", $trace))
97 if (!preg_match("@^\d+:@ismU", $trace))
105 if (!preg_match("@^(\d+):+@ismU", $line, $matches)) {
121 if (preg_match("@^[|\s]*>[\w]+@ism", $line, $matches)) {
132 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
141 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
177 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
210 if (!preg_match("@^[|\s]*>\_mysqlnd_pefree@ismU", $trace, $matches) &&
[all …]
/PHP-5.5/ext/pcre/tests/
H A D001.phpt2 abusing preg_match()
7 var_dump(preg_match('~
H A Dskip_002.inc3 if (@preg_match('/./u', '') === false) {
H A D002.phpt6 var_dump(preg_match());
20 Warning: preg_match() expects at least 2 parameters, 0 given in %s002.php on line 3
H A Dbug67238.phpt6 echo preg_match('/a{1,3}b/U', 'ab');
H A Dbug26927.phpt7 var_dump(preg_match("!{$str_quoted}!", $str), $str_quoted);
H A Dbug47662.phpt12 var_dump(preg_match($regex, 'foobar'));
H A Dbug38600.phpt7 var_dump(preg_match('/(?<!\w)(0x[\p{N}]+[lL]?|[\p{Nd}]+(e[\p{Nd}]*)?[lLdDfF]?)(?!\w)/', $foo, $m));
H A Dbug41050.phpt11 if (preg_match($regex,$sql, $m)) echo 'matched';
H A Dinvalid_utf8.phpt5 if (@preg_match('/./u', '') === false) {
/PHP-5.5/ext/oci8/tests/
H A Dconnect_without_oracle_home.phpt9 $ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
13 $iv = preg_match('/Oracle .*Version => (10\.2)/', $phpinfo);
H A Dconnect_without_oracle_home_old.phpt9 $ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
13 if (preg_match('/^10\.2\./', oci_client_version()) != 1) {
H A Dpecl_bug16035.phpt9 $ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
13 if (preg_match('/Unknown/', oci_client_version()) == 1) {
H A Dconnect_without_oracle_home_11.phpt9 $ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
13 if (preg_match('/^11\.2|12\./', oci_client_version()) != 1) {
H A Dconnect_without_oracle_home_old_11.phpt9 $ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
13 if (preg_match('/^11\.2|12\./', oci_client_version()) != 1) {
H A Dpassword_new.phpt12 if (preg_match('/Release (11|12)\./', oci_server_version($c), $matches) === 1 &&
13 preg_match('/^10\.2\.0\.[1234]/', oci_client_version()) === 1) {
H A Dpassword_old.phpt12 if (preg_match('/Release (11|12)\./', oci_server_version($c), $matches) === 1 &&
13 preg_match('/^10\.2\.0\.[1234]/', oci_client_version()) === 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) {
13 if (preg_match('/^11\./', oci_client_version()) != 1) {
H A Dclientversion_92.phpt6 if (preg_match('/Unknown/', oci_client_version()) != 1) {
H A Dclientversion.phpt6 if (preg_match('/^1[012]\./', oci_client_version()) != 1) {
/PHP-5.5/ext/mysql/tests/
H A Dmysql_constants.phpt26 if (!preg_match('@(\d+)\.(\d+)\.(\d+)@ism', $version, $matches))
41 if (stristr($name, 'mysql') && !preg_match("/^mysql([^_]+)_/iu", $name)) {
/PHP-5.5/ext/zlib/tests/
H A Dfunc.inc11 if (preg_match(',zlib.*Compiled Version => (\d+\.\d+\.\d+),s', $info, $match)) {
/PHP-5.5/tests/lang/
H A Dbug29944.phpt10 if (preg_match('/\d/', $bar)) return true;
/PHP-5.5/ext/spl/internal/
H A Dregexiterator.inc35 private $preg_flags;/**< PREG_* flags, see preg_match(), preg_match_all(),
49 * @param preg_flags global PREG_* flags, see preg_match(),
78 return preg_match($this->regex, $subject, $matches, $this->preg_flags);
82 return preg_match($this->regex, $subject, $this->current, $this->preg_flags) > 0;
/PHP-5.5/Zend/tests/
H A Dbug52237.phpt6 preg_match('//', '', $data->info);

Completed in 26 milliseconds

1234567