You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
383 B

--TEST--
x (PCRE_EXTENDED) modififer
--FILE--
<?php
var_dump(preg_match('/a e i o u/', 'aeiou', $m));
var_dump($m);
var_dump(preg_match('/a e i o u/x', 'aeiou', $m));
var_dump($m);
var_dump(preg_match("/a e\ni\to\ru/x", 'aeiou', $m));
var_dump($m);
?>
--EXPECT--
int(0)
array(0) {
}
int(1)
array(1) {
[0]=>
string(5) "aeiou"
}
int(1)
array(1) {
[0]=>
string(5) "aeiou"
}