Skip to content

Instantly share code, notes, and snippets.

@calvez
Created March 9, 2017 14:05
Show Gist options
  • Save calvez/d1b829e1b6db5bf088db076c423819bb to your computer and use it in GitHub Desktop.
Save calvez/d1b829e1b6db5bf088db076c423819bb to your computer and use it in GitHub Desktop.
autoversion
<link href="<?php autoversion('/path/to/theme.css'); ?>" rel="stylesheet">
<?php
function autoversion($url) {
$path = pathinfo($url);
$ver = '.'.filemtime($_SERVER['DOCUMENT_ROOT'].$url).'.';
return $path['dirname'].'/'.str_replace('.', $ver, $path['basename']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment