Как сделать файл .json с codeigniter? - PullRequest
0 голосов
/ 27 мая 2018

Это мой код json в моем контроллере:

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

    return json_encode($sql);

}

как сделать файл .json?пожалуйста помогите

1 Ответ

0 голосов
/ 27 мая 2018

В методе контроллера __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);
}

Как указывает этот ответ Записать в файл JSON с помощью 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';
// }   

Надеюсь, это поможет!

...