]*)">
时间:2021-07-01 10:21:17 帮助过:3人阅读
';
$text = stripslashes($text);
//print_r($text);
$pregfind = array(
"/]*file[^>]*)>/eiU",
);
$pregreplace = array(
"img_tag('\\1', '".$url."')",
);
return preg_replace($pregfind, $pregreplace, $text);
一直不明白,我想匹配的是
这样的图片,但是上面例子中图片没有file属性,为何正则也匹配到他了?求解。怎么修改正则才只匹配到
而不要匹配到
------解决方案--------------------
'/]*file="([^>]+)"[^>]*>/eiU',
试试这个