php: preg_replace 或 DomDocument ->重建表格?

发布于 2024-10-25 07:48:31 字数 570 浏览 2 评论 0原文

嘿伙计们, 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 技术交流群。

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

发布评论

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

评论(1

葬心 2024-11-01 07:48:32

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文