mirror of
https://github.com/php/php-src.git
synced 2025-01-20 10:43:40 +08:00
9 lines
198 B
PHP
9 lines
198 B
PHP
--TEST--
|
|
nonexisting back reference
|
|
--FILE--
|
|
<?php $a="abc123";
|
|
echo ereg_replace("123",'def\1ghi',$a)?>
|
|
--EXPECTF--
|
|
Deprecated: Function ereg_replace() is deprecated in %s on line %d
|
|
abcdef\1ghi
|