PHP/CodeIgniter
CodeIgniter에서 JSON 출력하기
bluemount
2014. 7. 23. 23:31
코드이그나이터에서 json 으로 출력하기
1. View 에서 출력하는 방법을 결정하면 된다.
<?php
$this->output->set_header('Content-Type: application/json; charset=utf-8');
echo json_encode($views);
?>
참고 : http://rogue-systems.com/2013/01/return-json-with-codeigniter/