11 lines
248 B
Plaintext
11 lines
248 B
Plaintext
|
|
--TEST--
|
||
|
|
Bug #71827 (substr_replace bug when length type is string )
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
$line = str_repeat(' ',20); $value ='03'; $pos=0; $len='2';
|
||
|
|
$line = substr_replace($line,$value,$pos,$len);
|
||
|
|
echo "[$line]\n";
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
[03 ]
|