Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/ext/ereg/tests/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/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