ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
# 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": "中文"} ?> ``` ```