我在codeigniter脚本中制作自定义欢迎消息,但我只想在index.php上显示
我有
<div class="welcome">
<?php echo getConfigSetting('config_welcome') ?>
</div>
此消息显示在所有页面的标题中。我想只在主页上显示(index.php)
任何消化? 谢谢
答案 0 :(得分:0)
您可以尝试使用CI帮助程序URL并抓住网址的第一部分来检查我们所在的页面。
示例:
<?php if( $this->uri->segment(1) == 'home' || $this->uri->segment(1) = '' ): ?>
<div class="welcome">
<?php echo getConfigSetting('config_welcome') ?>
</div>
<?php endIf; ?>
当然你想要改变&#34; home&#34;到您在网址中看到的主页名称或默认控制器/方法名称。
您还需要确保在配置/自动加载中自动加载网址 _helper。