php 将数组字符串 转为 数组 php 将数组字符串 转为 数组?
$str = "array('test'=>'test','tes'=>'ff')";
//使用return 转成数组
$str = eval("return $str;");
print_r($str);