Created
March 9, 2017 14:05
-
-
Save calvez/d1b829e1b6db5bf088db076c423819bb to your computer and use it in GitHub Desktop.
autoversion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="<?php autoversion('/path/to/theme.css'); ?>" rel="stylesheet"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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