CSSを変更してもブラウザキャッシュに残っててリロードしてくれないのムカつくのでファイルの更新日付をパラメータにくっつけるヤツ。
1 2 3 4 5 6 7 8 9 10 | function load_css( $cssfile , $media = null) { $testfile = $cssfile ; if ( $testfile [0] == "/" ) { $testfile = rtrim( $_SERVER [ 'DOCUMENT_ROOT' ], '/' ) . $cssfile ; } $ftime = filemtime ( $testfile ); $ins_media = $media ? " media=\"{$media}\"" : "" ; echo "<link type=" \"text/css\" " rel=" \"stylesheet\" " href=" \"{ $cssfile }?ver={ $ftime }\" $ins_media ">\n" ; } |
0 件のコメント:
コメントを投稿