Windows 平台上 HTML/PHP 的代码清理/格式化
是否有一个工具对于 C# 来说类似于 Resharper
,但对于 Windows 平台的 HTML/PHP 来说却如此?我经常将一些大块代码从 CMS 复制到记事本,但这些代码通常未格式化或格式非常糟糕,因此很难阅读。希望有一些 Resharper CleanUp 功能,可以正确格式化它,以便于使用/阅读文档。
格式化前示例:
<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>
格式化后示例
<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>
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我使用 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.
您可能想尝试 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
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.