php-src/ext/pcre/tests/grep.phpt

24 lines
328 B
Plaintext
Raw Normal View History

2006-06-13 22:05:26 +00:00
--TEST--
preg_grep()
--FILE--
<?php
$array = array('a', '1', 'q6', 'h20');
var_dump(preg_grep('/^(\d|.\d)$/', $array));
var_dump(preg_grep('/^(\d|.\d)$/', $array, PREG_GREP_INVERT));
?>
--EXPECT--
2006-10-03 21:18:43 +00:00
array(2) {
[1]=>
unicode(1) "1"
[2]=>
unicode(2) "q6"
}
array(2) {
[0]=>
unicode(1) "a"
[3]=>
unicode(3) "h20"
}