CodeIgniter如何获取控制器名及方法名
CodeIgniter如何获取控制器名
__CLASS__ 在控制器可以使用魔术常量得到控制器名称
__FUNCTION__ 在控制器可以使用魔术常量得到方法名称
$this->router->class 控制器名
$this->router->method 方法名
案例:在模板中判断不是tx控制器的话,加载news.css
1 2 3 |
<?php if($this->router->class!='tx'):?> <link rel="stylesheet" href="<?php echo base_url("public/css/news.css");?>"> <?php endif;?> |
- html标签屏蔽搜索引擎检索
- 纯css仿Iphone