Skip to content

Instantly share code, notes, and snippets.

@zackexplosion
Created June 1, 2015 06:59
Show Gist options
  • Save zackexplosion/82df82628229f8a305e3 to your computer and use it in GitHub Desktop.
Save zackexplosion/82df82628229f8a305e3 to your computer and use it in GitHub Desktop.
<?php
$ENV = 'development';
if($ENV == 'production'){
$VERSION = '20150601';
}else{
$VERSION = time();
}
?>
<html>
<head>
<script src="script1.js?v=<?php echo $VERSION ?>" />
<script src="script2.js?v=<?php echo $VERSION ?>" />
<script src="script3.js?v=<?php echo $VERSION ?>" />
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment