php-src/ext/ereg/tests/004.phpt
2004-05-19 08:45:46 +00:00

15 lines
221 B
PHP

--TEST--
simple ereg test
--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