mirror of
https://github.com/php/php-src.git
synced 2024-12-13 11:54:45 +08:00
12 lines
237 B
PHP
12 lines
237 B
PHP
--TEST--
|
|
Test empty result buffer in reg_replace
|
|
--FILE--
|
|
<?php
|
|
$a="abcd";
|
|
$b=ereg_replace("abcd","",$a);
|
|
echo "strlen(\$b)=".strlen($b);
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function ereg_replace() is deprecated in %s on line %d
|
|
strlen($b)=0
|