summaryrefslogtreecommitdiff
path: root/ext/ereg/tests/006.phpt
blob: cae349672ed767cfc5b401c90d8295743efab04d (plain)
1
2
3
4
5
6
7
8
--TEST--
Test ereg_replace of start-of-line
--FILE--
<?php $a="This is a nice and simple string";
  echo ereg_replace("^This","That",$a);
?>
--EXPECT--
That is a nice and simple string