if () { } 和 if () 的区别: endif; [英] Difference between if () { } and if () : endif;

查看:28
本文介绍了if () { } 和 if () 的区别: endif;的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

...之间有什么区别吗

Are there any differences between...

if ($value) {

}

……还有……

if ($value):

endif;

?

推荐答案

它们是相同的,但是如果您的代码中有 MVC 并且不想在您的代码中有很多回声,那么第二个方案会很棒.例如,在我的 .phtml 文件(Zend 框架)中,我将编写如下内容:

They are the same but the second one is great if you have MVC in your code and don't want to have a lot of echos in your code. For example, in my .phtml files (Zend Framework) I will write something like this:

<?php if($this->value): ?>
Hello
<?php elseif($this->asd): ?>
Your name is: <?= $this->name ?>
<?php else: ?>
You don't have a name.
<?php endif; ?>

这篇关于if () { } 和 if () 的区别: endif;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆