mirror of
https://github.com/php/php-src.git
synced 2024-12-20 15:30:38 +08:00
10 lines
253 B
PHP
10 lines
253 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);
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function ereg_replace() is deprecated in %s on line %d
|
|
That is a nice and simple string
|