如何使用codeigniter制作文件.json?

时间:2018-05-27 17:31:58

标签: php json codeigniter controller jsonencoder

这是我的控制器中的json编码:

public function loaddata(){
    $sql = $this->db->query('select * from e_alat_angkutan')->result();

    return json_encode($sql);

}

如何制作文件.json?请帮忙

1 个答案:

答案 0 :(得分:0)

在控制器__construct()方法中加载文件助手:

public function __construct()
{
    parent::__construct();
    $this->load->helper('file');
}

然后用第二个参数将其回显为TRUE:

public function loaddata(){
    $sql = $this->db->query('select * from e_alat_angkutan')->result();

    echo json_encode($sql,TRUE);
}

作为回答点Write to JSON file using CodeIgniter

//If the json is correct, you can then write the file and load the view

// $fp = fopen('./data.json', 'w');
// fwrite($fp, json_encode($sql));

// if ( ! write_file('./data.json', $arr))
// {
//     echo 'Unable to write the file';
// }
// else
// {
//     echo 'file written';
// }   

希望它有所帮助!