if(){}和if()之间的区别:endif;

两者之间有什么区别吗?

if ($value) {

}

…和…

if ($value):

endif;

回答:

它们是相同的,但是如果您的代码中包含MVC并且不想在代码中产生大量回声,那么第二个方法就很棒。例如,在我的.phtml文件(Zend

Framework)中,我将编写如下内容:

<?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; 的全部内容, 来源链接: utcz.com/qa/413425.html

回到顶部