2022年10月24日
摘要: function u2c($str){ return preg_replace_callback("#\\\u([0-9a-f]{4})#i", function ($r) { return iconv('UCS-2BE', 'UTF-8', pack('H4', $r[1]));},$str); 阅读全文
posted @ 2022-10-24 11:51 boye169 阅读(158) 评论(0) 推荐(0) 编辑