ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# xn\_json\_decode() ## xn\_json\_decode() ``` <pre class="calibre11">``` xn_json_decode($json) ``` ``` #### 【功能】 对 JSON 格式的字符串进行解码,返回数组(非对象)。 #### 【参数】 ``` <pre class="calibre11">``` $json:JSON 格式的字符串 ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php include './xiunophp/xiunophp.php'; $json = '{"name":"中文"}'; $r = xn_json_decode($json); print_r($r); /* 结果: Array( 'name'=>'中文', ) */ ?> ``` ```