Skip to content

Instantly share code, notes, and snippets.

@eristoddle
Created August 13, 2012 03:00
Show Gist options
  • Save eristoddle/3336554 to your computer and use it in GitHub Desktop.
Save eristoddle/3336554 to your computer and use it in GitHub Desktop.
JSON API headers for PHP
<?php
//JSON headers
header('Cache-Control: no-cache, must-revalidate');
header('Expires: '.gmdate('D, d M Y H:i:s', time()).' GMT');
header('Content-type: application/json; charset=utf-8');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment