/i",-6ren">
gpt4 book ai didi

php - preg_replace 在 IMG 标签中提出斜杠

转载 作者:行者123 更新时间:2023-11-28 04:24:17 25 4
gpt4 key购买 nike

我有以下代码,但它将每个 img 标签替换为: 我需要替换中包含的所有属性。

例如,这个:
<code><img src="images/myimg.gif" alt=""></code>

应该变成这样:
<code><img src="images/myimg.gif" alt="" /></code>

这是我当前的非工作代码:
<code>$html = preg_replace("/<img[^>]+\>/i", "<img $1 />", $html);</code>

最佳答案

$html = preg_replace("@(<img.*?)(?<!/)>@i", "$1/>", $html); 

关于php - preg_replace 在 IMG 标签中提出斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8906503/

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