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

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

WBOY
WBOYOriginal
2016-07-25 08:54:301167browse
  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;
复制代码

执行结果:



Statement:
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