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.
 
 

12 lines
174 B

--TEST--
string offset set
--FILE--
<?php
$s1 = "hello world";
$s2 = "php";
$s1[1] = $s2[1] = '_';
var_dump($s1, $s2);
?>
--EXPECT--
string(11) "h_llo world"
string(3) "p_p"