mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
8 lines
152 B
PHP
8 lines
152 B
PHP
--TEST--
|
|
Long back references
|
|
--FILE--
|
|
<?php $a="abc122222222223";
|
|
echo ereg_replace("1(2*)3","\\1def\\1",$a)?>
|
|
--EXPECT--
|
|
abc2222222222def2222222222
|