1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00
Files
archived-php-src/ext/pcre/tests/pcre_extended.phpt
T
2006-06-14 17:37:53 +00:00

30 lines
383 B
PHP

--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"
}