无法让 strip_tags() 工作
尝试使用此函数
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不在
strip_tags()
的调用范围内,它应该是:The
<a>
is not within the call ofstrip_tags()
, it should be: