php-src/ext/ereg/tests/004.phpt

17 lines
238 B
Plaintext
Raw Normal View History

--TEST--
simple ereg test
--POST--
--GET--
--FILE--
<?php $a="This is a nice and simple string";
if (ereg(".*nice and simple.*",$a)) {
echo "ok\n";
}
if (!ereg(".*doesn't exist.*",$a)) {
echo "ok\n";
}
?>
--EXPECT--
ok
ok