Home » Archive

Articles tagged with: browser

Uncategorized »

[21 Jul 2009 | View Comments | 44 views]

I am going to post very handy tip for javascript and css files caching. Browsers automatically cache the css and JS files and when you make change to CSS and JS some times change does not appears.
To prevent this use following
<?php
echo ‘<link rel=”stylesheet” type=”text/css” href=”style.css?’ . filemtime(’style.css’) . ‘” />’;
?>
And For JS
<?php
echo ‘<script type=”application/javascript”=”main.js?’ . filemtime(’main.js’) . ‘” />’;
?>
The PHP function filemtime returns last modified date of file, so every time you make change in css / JS files the filemtime will return different value and CSS / JS Url …