微观优化: if($var){ ... } 与 if($var): ... endif

发布于 2024-11-17 18:31:25 字数 91 浏览 3 评论 0原文

if($var){ ... }if($var): ... endif 更快吗?

您使用哪一款?

Is if($var){ ... } faster than if($var): ... endif ?

Which one do you use?

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

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

发布评论

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

评论(2

把梦留给海 2024-11-24 18:31:25

我敢肯定,如果有的话,差异可以忽略不计。如果差异对您来说很重要,那么您可能应该使用更快的(可能是编译过的)语言。

您可以更好地优化更密集的事情,例如首先优化数据库(并编写干净的代码,如 @Tim 所说)。

I'm sure the difference is negligible, if there is any. If the difference is important to you, you should probably use a faster (likely compiled) language.

You would do better optimizing more intensive things, like databases first (and writing clean code, as @Tim stated).

甜妞爱困 2024-11-24 18:31:25

我认为两者是一样的。就我个人而言,我更喜欢 if($var: ... endif;。php 是一种模板语言,该语法非常适合它。实际上,我将所有变量都放在 标签以保持简洁。

I think both are the same. Personally I prefer if($var: ... endif;. php is a template language and that syntax leads to extremely well toward it. I actually put all variables in <? ... ?> tags to keep it all clean and concise.

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