Skip to content

Instantly share code, notes, and snippets.

@caionitro
Last active August 29, 2015 13:57
Show Gist options
  • Save caionitro/9553012 to your computer and use it in GitHub Desktop.
Save caionitro/9553012 to your computer and use it in GitHub Desktop.
Sem cache no css
function cssjs_nocache($url){
global $baseHref, $basePath;
return $baseHref . $url . '?' . @filemtime($basePath . $url);
}
/*
como usar:
<link href="<?php echo cssjs_nocache('/lib/bootstrap/css/bootstrap.min.css'); ?>" rel="stylesheet">
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment