是否可以阻止 Zend Studio 像这样格式化嵌入式 PHP?

发布于 2024-10-22 02:03:54 字数 289 浏览 0 评论 0原文

我想升级到 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 技术交流群。

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

发布评论

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

评论(2

我的鱼塘能养鲲 2024-10-29 02:03:54

你尝试过使用吗?

<tr bgcolor="<?= "red" ?>">

Have you tried using?

<tr bgcolor="<?= "red" ?>">
半步萧音过轻尘 2024-10-29 02:03:54

关于短标签的优缺点的评论很少: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.

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