Advertisement
Guest User

Untitled

a guest
Feb 6th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public function sendJSON($data) {
  2. if(!headers_sent()) header('Content-Type: application/json; charset=utf-8', true, 200);
  3. echo json_encode($data, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP | JSON_UNESCAPED_UNICODE);
  4. exit;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement