Guest User

Untitled

a guest
Apr 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // outputs json
  2. header('Content-Disposition: attachment; filename=output.json');
  3. header('Content-Type: application/json');
  4. echo json_encode($output);
  5.  
  6. // output json
  7. header('Content-Disposition: attachment; filename=output.js');
  8. header('Content-Type: text/javascript');
  9. $json = json_encode($output);
  10.  
  11. // it's dirty
  12. $json = 'var myObject = ' . $json . ';';
  13.  
  14. echo $json
Add Comment
Please, Sign In to add comment