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