本文介绍了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;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!