Windows 平台上 HTML/PHP 的代码清理/格式化

发布于 2024-12-04 14:04:47 字数 1237 浏览 2 评论 0原文

是否有一个工具对于 C# 来说类似于 Resharper,但对于 Windows 平台的 HTML/PHP 来说却如此?我经常将一些大块代码从 CMS 复制到记事本,但这些代码通常未格式化或格式非常糟糕,因此很难阅读。希望有一些 Resharper CleanUp 功能,可以正确格式化它,以便于使用/阅读文档。

格式化前示例:

<p>
<a class="hov" href="index.php?option=com_content&amp;view=article&amp;id=15&amp;Itemid=16"><img alt="" src="files/images/buttons/btn_kalkulator1.gif" style="width: 272px; height: 235px;" /></a><a class="hov" href="index.php?option=com_content&amp;view=article&amp;id=10&amp;Itemid=15"><img alt="" src="files/images/buttons/btn_kalkulator2.gif" style="width: 272px; height: 235px;" /></a></p>

格式化后示例

<p>
    <a class="hov" href="index.php?option=com_content&amp;view=article&amp;id=15&amp;Itemid=16">
         <img alt="" src="files/images/buttons/btn_kalkulator1.gif" style="width: 272px; height: 235px;" />
    </a>
    <a class="hov" href="index.php?option=com_content&amp;view=article&amp;id=10&amp;Itemid=15">
         <img alt="" src="files/images/buttons/btn_kalkulator2.gif" style="width: 272px; height: 235px;" />
    </a>
</p>

Is there a tool that works like Resharper for C# but for HTML/PHP for Windows platform? I often copy some large chunks of code to notepad from CMS and it's often unformatted or very badly formatted so it's hard to read. Would like to have some Resharper CleanUp feature that would format it properly for easy to use/read document.

Example before formatting:

<p>
<a class="hov" href="index.php?option=com_content&view=article&id=15&Itemid=16"><img alt="" src="files/images/buttons/btn_kalkulator1.gif" style="width: 272px; height: 235px;" /></a><a class="hov" href="index.php?option=com_content&view=article&id=10&Itemid=15"><img alt="" src="files/images/buttons/btn_kalkulator2.gif" style="width: 272px; height: 235px;" /></a></p>

Example after formatting

<p>
    <a class="hov" href="index.php?option=com_content&view=article&id=15&Itemid=16">
         <img alt="" src="files/images/buttons/btn_kalkulator1.gif" style="width: 272px; height: 235px;" />
    </a>
    <a class="hov" href="index.php?option=com_content&view=article&id=10&Itemid=15">
         <img alt="" src="files/images/buttons/btn_kalkulator2.gif" style="width: 272px; height: 235px;" />
    </a>
</p>

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

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

发布评论

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

评论(3

深白境迁sunset 2024-12-11 14:04:47

我使用 JetBrains PHPStorm IDE - PHP、JS、HTML 的大量格式设置;快速重新格式化和其他非常有用的东西,确实让生活变得更轻松。我建议你尝试一下。

I use JetBrains PHPStorm IDE - lots of format setting for PHP, JS, HTML; quick reformat and other things that are very usable and realy make life easier. I advise you to try it.

阳光①夏 2024-12-11 14:04:47

您可能想尝试 HTML Tidy在线 HTML Tidy

从未使用过其中任何一个,但这是我通过快速谷歌搜索找到的

You might want to try HTML Tidy or online HTML Tidy

I have never used either of them, but that is what I found with a quick google search

离鸿 2024-12-11 14:04:47

PDT eclipse 有一个格式化选项。我经常使用它,但它并不总是一个好的选择,因为他破坏了我认为不那么方便和易于阅读的东西。

The PDT eclipse has a formatting option. I use it a lot, but it's not always a good option because he breaks stuff where I think it's not so handy and easy to read.

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