1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00
Files
archived-php-src/ext/ereg/tests/007.phpt
T
2004-05-19 08:45:46 +00:00

11 lines
169 B
PHP

--TEST--
Test empty result buffer in reg_replace
--FILE--
<?php
$a="abcd";
$b=ereg_replace("abcd","",$a);
echo "strlen(\$b)=".strlen($b);
?>
--EXPECT--
strlen($b)=0