读取一个aa.css文件,怎么用php中正则表达式把background:url(images/aa.jpg); 提取images/aa.jpg的部分
读取一个aa.css文件,怎么用php中正则表达式把background:url(images/aa.jpg);提取images/aa.jpg的部分,然后保存到一个数组中...
读取一个aa.css文件,怎么用php中正则表达式把background:url(images/aa.jpg); 提取images/aa.jpg的部分,然后保存到一个数组中?
展开
展开全部
css中不可能有url(images/aa.jpg)这种格式的background! 我猜你应该是形如:background:url.../images/aa.jpg 然后images固定,aa可变吧??
$content = file_get_contents("aa.css");
preg_match_all("/background:.*?(images\/.+?)[\s]|;/", $content, $match);
//$match[1]就是你要的那个数组
$content = file_get_contents("aa.css");
preg_match_all("/background:.*?(images\/.+?)[\s]|;/", $content, $match);
//$match[1]就是你要的那个数组
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询