发布于 2024-11-08 19:46:22 字数 291 浏览 0 评论 0 原文

在很多 CakePHP 示例中,我看到 我总是用速记方式写成

有什么区别吗?由于某种原因 是否更好?我总是倾向于较短的,但是 - 当我看到其他人使用 时,我想知道 - 也许我做错了。

CakePHP 中的情况如何——是否由于某种原因而有所不同?

In a lot of CakePHP examples, I see <?php echo $myVar; ?> I've always written this in shorthand like <?php=$myVar?>

Is there any difference? Is <?php echo better for some reason? I always lean toward the shorter, but - when I see everyone else using the <?php echo, I wonder - maybe I'm doing it wrong.

What about in CakePHP - is it different for some reason?

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

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

发布评论

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

评论(1

江挽川 2024-11-15 19:46:22

必须通过 short_open_tag 在你的 php.ini 中。由于某些系统禁用了此值,因此建议您使用 来确保您的代码始终在其运行的任何系统上运行。

<?= or <?php= has to be enabled for it to work properly via the short_open_tag in your php.ini. Since some systems out there have this value disabled, it's encouraged that you use <?php echo to ensure that your code will always work on any system it runs on.

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