是否可以阻止 Zend Studio 像这样格式化嵌入式 PHP?
我想升级到 Zend Studio(当前使用 Netbeans),但我对格式化程序在 HTML 属性中格式化 PHP 的方式感到有点失望。鉴于此:
<tr bgcolor="<?php echo "red"; ?>">
Zend Studio 将对其进行格式化,类似于:
<tr bgcolor="<?php
echo "red";
?>">
有任何人能够更改此行为吗?谢谢你,
I want to upgrade to Zend Studio (currently using Netbeans), but I am slightly disappointed about how the formatter formats PHP in HTML attributes. Given this:
<tr bgcolor="<?php echo "red"; ?>">
Zend Studio will format it similar to this:
<tr bgcolor="<?php
echo "red";
?>">
Has anyone been able to change this behavior? Thank you,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试过使用吗?
Have you tried using?
关于短标签的优缺点的评论很少:PHP echo 与 PHP 短标签
有点偏离主题,但我建议您使用 CSS 而不是 bgcolour 作为颜色等。
Few comments about the pros and cons of short tags here: PHP echo vs PHP short tags
Slightly off topic but I recommend you use CSS not bgcolour for your colours etc.