php: preg_replace 或 DomDocument ->重建表格?
嘿伙计们, echo $content
产生这个
<form method="post" action="">
<input type="hidden" name="ip" value="127.0.0.1">
<p>
something...
<br/>
something ...
</p>
<p>
something else...
</p>
</form>
是否可以
用其他东西替换所有标签,例如用类名?或者是否有可能去除所有
标签并将东西保留在里面?
我只是喜欢应用我自己的格式,所以我需要删除所有
和
但是,当删除
's< ;p>
我需要保留它的内容。
知道如何做到这一点吗?这可能吗?或者我应该使用javascript?
hey guys,
echo $content
produces this
<form method="post" action="">
<input type="hidden" name="ip" value="127.0.0.1">
<p>
something...
<br/>
something ...
</p>
<p>
something else...
</p>
</form>
Is it possible to either replace all
tags with something else e.g. with a classname? Or is it possible to even remove all
tags and keep the stuff inside?
Id just love to apply my own formatting so I would need to strip off all <p>
and <br/>'s
However when removing <p>
's I need to keep it's content.
Any idea how to do this? Is that even possible? or should I use javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 strip_tags 来删除所有或一组标签,方法是提供第二个参数列出了允许的标签。
You can use strip_tags to remove all or a set of tags by providing the second parameter which lists the allowed tags.