IT/PHP

[PHP] php 반복제어문 if eles if endif 사용법

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