gpt4 book ai didi

PHP - 从CSS中提取图像路径

转载 作者:搜寻专家 更新时间:2023-10-31 20:52:58 24 4
gpt4 key购买 nike

我有一个这样的样式表:

.d2 {
position:absolute;
background:url(../img/delete.png) no-repeat 0px 1px;
color:#0066CC;
}
.reply {
position:absolute;
background:url(../img/pen.png) no-repeat 0px 1px;
top:5px
}
#about {
position:absolute;
background:url(../img/abc.png);
top:5px
}

我想获取具有不重复属性的图像路径。期望结果为 fowlow:

array('../img/pen.png', '../img/delete.png')

最佳答案

这段经过测试的代码可以做到这一点:

$imgs = array();
$re = '/url\(\s*[\'"]?(\S*\.(?:jpe?g|gif|png))[\'"]?\s*\)[^;}]*?no-repeat/i';
if (preg_match_all($re, $text, $matches)) {
$imgs = $matches[1];
}

关于PHP - 从CSS中提取图像路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5688508/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com