Heim >Backend-Entwicklung >PHP-Tutorial >求大神写个PHP正则函数 自动能识别修改 图片 CSS JS 的路径

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

WBOY
WBOYOriginal
2016-06-23 13:29:59890Durchsuche

 
 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); 

在这个基础上改进,这个不能判断是不是 src= href= 还有 有没单双引号


回复讨论(解决方案)

$s =<<< TXT<link href="Images/Style.Css" rel="stylesheet" type="text/css" />  style="background-image:url(img/login_08.gif)<script language="JavaScript" type="text/javascript" src="js/ajax.js"></script><img  src="img/login_05.gif" / alt="求大神写个PHP正则函数 自动能识别修改 图片 CSS JS 的路径" >TXT;echo preg_replace('/(href\s*=\s*|url\(|src\s*=\s*)(["\']?)/', '$1$2/template/', $s);

<link href="/template/Images/Style.Css" rel="stylesheet" type="text/css" />    style="max-width:90%"JavaScript" type="text/javascript" src="/template/js/ajax.js"></script><img  src="/template/img/login_05.gif" / alt="求大神写个PHP正则函数 自动能识别修改 图片 CSS JS 的路径" >

老大 能再加个限制不

只有 带 images  js  或 css 开头的路径 才会插入一个  /template/
变成 /template/images/  或 /template/js/ 或  /template/css/

而其他的 比如  img/ 开头的 则不变化

根据唠叨前辈的代码修改

$s ='<link href="Images/Style.Css" rel="stylesheet" type="text/css" />   style="max-width:90%"JavaScript" type="text/javascript" src="js/ajax.js"></script><img  src="img/login_05.gif" / alt="求大神写个PHP正则函数 自动能识别修改 图片 CSS JS 的路径" >';echo preg_replace('/(href\s*=\s*|url\(|src\s*=\s*)(["\']?)(Images|js|css)/', '$1$2/template/$3', $s);


执行

<link href="/template/Images/Style.Css" rel="stylesheet" type="text/css" />   style="max-width:90%"JavaScript" type="text/javascript" src="/template/js/ajax.js"></script>

谢谢两位 完美了!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn