求大神写个PHP正则函数 自动能识别修改 图片 CSS JS路径

WBOY
Release: 2016-06-23 13:30:49
Original
872 people have browsed it

 
 style="background-image:url(img/login_08.gif)
<script></script>
求大神写个PHP正则函数 自动能识别修改 图片 CSS JS路径

等 凡是有以上类型的  以 images img js css 开头的 js 图片css文件
src 或 href = 或 background-image:url() 双引号的 单引号的 无引号的 
都能自动加上一个  /template/进去 
变成 比如

 
  style="max-width:90%"求大神写个PHP正则函数 自动能识别修改 图片 CSS JS路径" >

谢谢


回复讨论(解决方案)

$html = preg_replace('#(images|img|js|css)/#i', 'template/$1/', $html);
Copy after login


不知为什么你要暴露网站的布局

由此你可以理解了开源框架为何要定义诸如 APP、URL、ROOT 之类的常量或伪常量

因为这样 模板才方便直接在DW里编辑啊 也不算暴露吧 现在网站下载器之类的 模板一下子就偷跑了

这样 匹配的范围太大啊 能不能 带上 src 引号 斜杠 之类的限定呢

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