Skip to content

Instantly share code, notes, and snippets.

@Pandahisham
Forked from Web1776/Prepros PHP Helper
Created September 25, 2015 14:01
Show Gist options
  • Save Pandahisham/b69d4f4423e3f4a7b26a to your computer and use it in GitHub Desktop.
Save Pandahisham/b69d4f4423e3f4a7b26a to your computer and use it in GitHub Desktop.
Allows automatic refresh when saving PHP files. Requires Prepros to be installed on your system.
<?php //Use with http://alphapixels.com/prepros/ , must be used before any content is output (ie, functions.php)
$lastModified=filemtime(__FILE__);
header("Last-Modified: ".gmdate("D, d M Y H:i:s", $lastModified)." GMT");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment