I've noticed that Stack Overflow adds ?v=xxxxxxxxxxxx:

to the scripts and style sheets that are bound to the web-page. This, in conjunction with the Cache-Control response header
Cache-Control max-age=604800
which is being sent for those static resources, makes sure that the same script or style sheet is cached (in the browser) for one week.
I would like to use this technique. Could you tell me how that query string is added to the URLs? My source code looks like so:
<script src="js/script.js"></script>
and
<link href="css/style.css" rel="stylesheet">
I assume that the value of v is determined by the Last-Modified value of the file. Does that mean that for every request to my .php web-page, I have to access the last-modified information for every static resource? (I feel that would be a performance hit.)