摘要: /** * 由于php的json扩展自带的函数json_encode会将汉字转换成unicode码 * 所以我们在这里用自定义的json_encode,这个函数不会将汉字转换为unicode码 */ public function customJsonEncode($a = false) { if (is_null($a)) return 'null'; if ($a === false) return 'false'; if ($a === true) ... 阅读全文
posted @ 2013-12-01 10:23 简单--生活 阅读(417) 评论(0) 推荐(0) 编辑
简单--生活(CSDN)