PHP正则匹配img任意属性src 适用任意img写法 - Lin Huiming (Aaron) - 林茄子
lin huiming
因上努力,果上随缘

PHP正则匹配img任意属性src 适用任意img写法

  • Lin Huiming
  • 3分钟阅读 3min read
function replace_content($title,$newstext){
    $newstext = stripcslashes($newstext);
    $imgRegex='/<\s*img[\s\S]+?(?:src=[\'"]([\S\s]*?)[\'"]\s*|alt=[\'"]([\S\s]*?)[\'"]\s*|[a-z]+=[\'"][\S\s]*?[\'"]\s*)+[\s\S]*?>/i';
    $str = preg_replace($imgRegex,'<img class="lazy" data-src="$1" alt="$2" title="$2" width="100%" alt="$2" style="margin:8px 0">',$newstext); 
    return $str;
}

该内容有帮助吗?Was this helpful?

评论 Comment

已有0人参与,点击查看更多评论