时间:2021-07-01 10:21:17 帮助过:5人阅读
$s =<<< TXT style="background-image:url(img/login_08.gif)TXT;echo preg_replace('/(href\s*=\s*|url\(|src\s*=\s*)(["\']?)/', '$1$2/template/', $s);
style="background-image:url(/template/img/login_08.gif)
老大 能再加个限制不
只有 带 images js 或 css 开头的路径 才会插入一个 /template/
变成 /template/images/ 或 /template/js/ 或 /template/css/
而其他的 比如 img/ 开头的 则不变化
根据唠叨前辈的代码修改
$s =' style="background-image:url(img/login_08.gif)';echo preg_replace('/(href\s*=\s*|url\(|src\s*=\s*)(["\']?)(Images|js|css)/', '$1$2/template/$3', $s);
style="background-image:url(img/login_08.gif)
谢谢两位 完美了!