mirror of
https://github.com/php/php-src.git
synced 2024-12-24 09:18:17 +08:00
9 lines
179 B
PHP
9 lines
179 B
PHP
--TEST--
|
|
RegReplace test 1
|
|
--FILE--
|
|
<?php $a="abc123";
|
|
echo ereg_replace("123","def",$a)?>
|
|
--EXPECTF--
|
|
Deprecated: Function ereg_replace() is deprecated in %s on line %d
|
|
abcdef
|