首页 > 代码库 > 使用json格式输出

使用json格式输出

 /**
     * json输出
     *
     * @param unknown_type $info
     */
    public function json_out ($info)
    {
        header(‘Content-type: text/javascript;charset=utf-8‘);
        echo json_encode($info);
    }

 

使用json格式输出