summaryrefslogtreecommitdiff
path: root/ext/ereg/tests/006.phpt
blob: 7df88dd3218e6ea710256a704d33b578351a8683 (plain)
1
2
3
4
5
6
7
8
9
--TEST--
Test ereg_replace of start-of-line
--FILE--
<?php $a="This is a nice and simple string";
  echo ereg_replace("^This","That",$a);
?>
--EXPECTF--
Deprecated: Function ereg_replace() is deprecated in %s on line %d
That is a nice and simple string