无法让 strip_tags() 工作

发布于 2024-12-12 08:21:23 字数 624 浏览 0 评论 0原文

尝试使用此函数

http://php.net/manual/en/function。 strip-tags.php

反对这个:

[link-code-html] => <a href="http://www.kqzyfj.com/click-3782261-10563989">invisibleSHIELD for the iPhone 3G</a><img src="http://www.ftjcfx.com/image-3782261-10563989" width="1" height="1" border="0"/>

while

echo(strip_tags($each->{'link-code-html'}),'<a>'));

返回我:

invisibleSHIELD for the iPhone 3G

似乎我旁边没有 img (1x1),但它缺少链接

任何想法我做错了什么?

trying to use this function

http://php.net/manual/en/function.strip-tags.php

against this:

[link-code-html] => <a href="http://www.kqzyfj.com/click-3782261-10563989">invisibleSHIELD for the iPhone 3G</a><img src="http://www.ftjcfx.com/image-3782261-10563989" width="1" height="1" border="0"/>

while

echo(strip_tags($each->{'link-code-html'}),'<a>'));

returns me:

invisibleSHIELD for the iPhone 3G

it doesn't seems like I have img (1x1) next to it, but it's missing link

any ideas what am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浸婚纱 2024-12-19 08:21:23

不在 strip_tags() 的调用范围内,它应该是:

echo(strip_tags($each->{'link-code-html'}, '<a>'));
                                                ^

The <a> is not within the call of strip_tags(), it should be:

echo(strip_tags($each->{'link-code-html'}, '<a>'));
                                                ^
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文