gpt4 book ai didi

PHP 只允许 img 标签

转载 作者:行者123 更新时间:2023-12-02 07:12:38 25 4
gpt4 key购买 nike

我需要你的帮助与 php 相关。在 php 中,我想允许 html <img>仅标签,我尝试了 php 的内置函数 strip_tags()但它没有给我我需要的输出。例如,在以下代码中 strip_tags()允许 img 标签但与文本一起。

$img = "<img src='/img/fawaz.jpg' alt= ''> <br /> <p> This is a detailed paragraph about Fawaz and his mates.</p>";
echo strip_tags($img , "<img>");

只允许 <img> 的正确方法是什么?或仅来自函数或变量的任何标记。任何帮助都将不胜感激。

谢谢

最佳答案

这可能是由于您的代码中没有关闭 img 标签。试试这个

$img = "<img src='/img/fawaz.jpg' alt= '' /> <br /> <p> This is a detailed paragraph about Fawaz and his mates.</p>";
echo strip_tags($img , "<img>");

关于PHP 只允许 img 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4274403/

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