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.
 
 

9 lines
233 B

--TEST--
Bug #70667 (strtr() causes invalid writes and a crashes)
--FILE--
<?php
$a = array("{{language_id}}"=>"255", "{{partner_name}}"=>"test1");
var_dump(strtr("Sign in to test1", $a));
?>
--EXPECT--
string(16) "Sign in to test1"