Как сделать файл .json с codeigniter?

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

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

return json_encode($sql);

}

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

1

Решение

В контроллере __construct() Метод загрузки файла помощника:

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

И затем повторить это со вторым параметром, чтобы ИСТИНА:

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';
// }

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

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]