24 June 2019

Right way of JSON output in CodeIgniter 3.

Source code viewer
  1. class MyClass extends CI_Controller
  2. {
  3. ...
  4. public function myfunction()
  5. {
  6. $this->output
  7. ->set_status_header(200)
  8. ->set_content_type('application/json')
  9. ->set_output(json_encode($response));
  10. }
  11. }
Programming Language: PHP