Home > Backend Development > PHP Tutorial > PHP regular adds version information to css and js links (example)

PHP regular adds version information to css and js links (example)

WBOY
Release: 2016-07-25 08:54:30
Original
1251 people have browsed it
  1. $html = <<< HTML

  2. HTML;
  3. $ver = '1.0.3';
  4. $p = "/($html = preg_replace_callback($p, create_function('$m', 'return $m[1].$m[2].(strpos($m[2], "?")?"&":"?")."_v='.$ver.'";'), $html);
  5. echo $html;
复制代码

执行结果:



source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template