
| Path : /usr/src/php/ext/ereg/tests/ |
| Current File : //usr/src/php/ext/ereg/tests/005.phpt |
--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