1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
--TEST--
Bug #37800 (preg_replace() limit parameter odd behaviour)
--FILE--
<?php
$s_string = '1111111111';
$s_search = '/1/';
$s_replace = 'One ';
$i_limit = 1;
$i_count = 0;
$s_output = preg_replace($s_search, $s_replace, $s_string, $i_limit,
$i_count);
echo "Output = " . var_export($s_output, True) . "\n";
echo "Count = $i_count\n";
var_dump(preg_last_error() === PREG_NO_ERROR);
$i_limit = strlen($s_string);
$s_output = preg_replace($s_search, $s_replace, $s_string, $i_limit,
$i_count);
echo "Output = " . var_export($s_output, True) . "\n";
echo "Count = $i_count\n";
var_dump(preg_last_error() === PREG_NO_ERROR);
?>
--EXPECT--
Output = 'One 111111111'
Count = 1
bool(true)
Output = 'One One One One One One One One One One '
Count = 10
bool(true)
|