TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
327 B
27 lines
327 B
--TEST--
|
|
Bug #71190 (substr_replace converts integers in original $search array to strings)
|
|
--FILE--
|
|
<?php
|
|
$b = [0, 1, 2];
|
|
|
|
var_dump($b);
|
|
substr_replace("test", $b, "1");
|
|
var_dump($b);
|
|
?>
|
|
--EXPECT--
|
|
array(3) {
|
|
[0]=>
|
|
int(0)
|
|
[1]=>
|
|
int(1)
|
|
[2]=>
|
|
int(2)
|
|
}
|
|
array(3) {
|
|
[0]=>
|
|
int(0)
|
|
[1]=>
|
|
int(1)
|
|
[2]=>
|
|
int(2)
|
|
}
|
|
|