多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# xn\_json\_encode() ## xn\_json\_encode() ``` <pre class="calibre11">``` xn_json_encode($arg) ``` ``` #### 【功能】 对变量进行 JSON 编码,不对中文进行 UNICODE 转义。 #### 【参数】 ``` <pre class="calibre11">``` $s:字符串 ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php include './xiunophp/xiunophp.php'; $arr = array ('name'=>'中文'); $s = xn_json_encode($arr); echo $s; // 结果: {"name": "中文"} ?> ``` ```