-6

下面的 PHP 调用工作正常,但也许还有另一种更简洁的方式来显示相同​​的内容?

<?php if ($this['modules']->count('top-a')) : ?>
       <?php if ($this['config']->get('warp_onlyhome')) : ?>
          <?php $catid = JRequest::getInt('catid'); if ($catid == 0) : ?>
    <section id="top-a" class="grid-block"><?php echo $this['modules']->render('top-a', array('layout'=>$this['config']->get('top-a'))); ?></section>
          <?php endif ?>
          <?php else: ?>
    <section id="top-a" class="grid-block"><?php echo $this['modules']->render('top-a', array('layout'=>$this['config']->get('top-a'))); ?></section>
        <?php endif; ?>
     <?php endif; ?>
4

2 回答 2

1

这是如何使用 if else 嵌入的示例。

<? if ($condition): ?>
  <p>Content</p>
<? elseif ($other_condition): ?>
  <p>Other Content</p>
<? else: ?>
  <p>Default Content</p>
<? endif; ?>

查看更多示例替代方法

于 2013-10-13T21:17:00.950 回答
1

你用else:.

<?php if ($this['config']->get('warp_onlyhome')) : ?>
   <?php $catid = JRequest::getInt('catid'); if ($catid == 0) : ?>

my content goes here

   <?php endif: ?>
   <?php else: ?>

my content 2

<?php endif; ?>

不那么疯狂的格式:

if ($this['config']->get('warp_onlyhome')) {
   $catid = JRequest::getInt('catid'); 
   if ($catid == 0) {
      echo "my content goes here";
   }
} else {

  echo "my content 2";

}
于 2013-10-13T21:18:23.970 回答