Skip to content

Instantly share code, notes, and snippets.

@fenric
Last active March 6, 2017 05:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fenric/8b268ed2fcdbe7ca7eaebddafc020e2c to your computer and use it in GitHub Desktop.
Save fenric/8b268ed2fcdbe7ca7eaebddafc020e2c to your computer and use it in GitHub Desktop.
<?php
function asset($location)
{
if (file_exists($filename = $_SERVER['DOCUMENT_ROOT'] . $location))
{
return sprintf('%s?revision=%s', $location, filemtime($filename));
}
return $location;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment