json_encode 改进 为 json_encode_ex
function json_encode_ex($value)
{
if (version_compare(PHP_VERSION, '5.4.0', '<')){
$str = json_encode($value);
$str = preg_replace_callback("#\u([0-9a-f]{4})#i", function ($matchs) {
return iconv('UCS-2BE', 'UTF-8', pack('H4', $matchs[1]));
}, $str);
return $str;
} else {
return json_encode($value, JSON_UNESCAPED_UNICODE);
}
}
function mylog1($word){
if(YII_DEBUG){
$file = 'mylog1.txt';
file_put_contents($file,'执行时间'.date('Y-m-d H:i:s',time())."
".$word."
",FILE_APPEND);
}
}