mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
9 lines
185 B
PHP
9 lines
185 B
PHP
--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
|