php-src/ext/ereg/tests/005.phpt
2008-11-18 17:55:07 +00:00

20 lines
391 B
PHP

--TEST--
Test Regular expression register support in ereg
--FILE--
<?php $a="This is a nice and simple string";
echo ereg(".*(is).*(is).*",$a,$registers);
echo "\n";
echo $registers[0];
echo "\n";
echo $registers[1];
echo "\n";
echo $registers[2];
echo "\n";
?>
--EXPECTF--
Deprecated: Function ereg() is deprecated in %s on line %d
32
This is a nice and simple string
is
is