我正在使用joomla,我想用我的模板做到这一点!
<html>
<?php if ($this['config']->get('home')) : ?>
<div class="home">
Some content
<div>
<?php else : ?>
<div class="page">
Some other content
<div>
<?php else if ($this['config']->get('blog')) : ?>
<div class="blog">
Some other blog content
<div>
<?php endif; ?>
</html>
我的问题是我不能在此代码中使用多个(否则为if)。
这样说:
<html>
<?php if ($this['config']->get('home')) : ?>
<div class="home">
Some content
<div>
<?php else if ($this['config']->get('page')) : ?>
<div class="page">
Some other content
<div>
<?php else if ($this['config']->get('blog')) : ?>
<div class="blog">
Some other blog content
<div>
<?php endif; ?>
</html>
我的英语不是那么令人印象深刻所以我希望你能理解我
答案 0 :(得分:2)
如果在最后
,则无需使用else<html>
<?php if ($this['config']->get('home')) : ?>
<div class="home">
Some content
<div>
<?php else if ($this['config']->get('page')) : ?>
<div class="page">
Some other content
<div>
<?php else : ?>
<div class="blog">
Some other blog content
<div>
<?php endif; ?>
</html>