json_enpre只想
utf-8。根据您的字符集,可以 在 调用变量 之前
使用
iconv或。可能与。
utf8_enpre
__
json_enpre``array_walk_recursive
根据要求,这是一种 未完成的 更改数组的方法,并假设(1)它不包含对象,并且(2)数组键位于ascii /下界,因此可以保留原样:
$current_charset = 'ISO-8859-15';//or what it is nowarray_walk_recursive($array,function(&$value) use ($current_charset){ $value = iconv('UTF-8//TRANSLIT',$current_charset,$value);});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)