codeigniter可以支持内联函数吗?

时间:2014-11-14 12:58:54

标签: php codeigniter inline-functions

我们可以在Codeigniter中的另一个函数内编写多个函数吗?这是我的控制器

class Products extends CI_Controller {

  public function myproduct() {
      $this->load->view('myproduct'); // call myproduct.php

           public function features() {
              $this->load->view('features');  // call "myproduct/features"
            }

           public function screenshots() {
              $this->load->view('screenshots');  // call "myproduct/screenshots"
            }
    }
}

根据我的控制器,myproduct()中有2个内联函数。我的目标是将网址显示为

localhost/mysite/products/myproduct
localhost/mysite/products/myproduct/features
localhost/mysite/products/myproduct/screenshots

我已经尝试了但它给了我一个错误

Parse error: syntax error, unexpected 'public' (T_PUBLIC) in D:\...........\application\controllers\mysite\products.php on line 5

并且第5行是

public function features() { .........

3 个答案:

答案 0 :(得分:0)

这不是codeigniter中的东西......这在PHP中通常是不可能的。您可以使用闭包,但它们不会在您的情况下呈现所需的效果。

尝试阅读CodeIgniter URI Routing以了解codeigniter中的路由原则。比在控制器中创建单独的功能。

答案 1 :(得分:0)

您可以将其视为网址中的uri参数:

public function myproduct($param = null) 
{
    if($param == null) {
        $this->load->view('myproduct'); 
    } elseif($param == 'features') {
        $this->load->view('features');
    } elseif ($param == 'screenshots') {
        $this->load->view('screenshots');
    }
}

答案 2 :(得分:0)

我不确定您要实现的目标或计划如何调用/使用这些函数以及在哪个范围内,但为了在函数内声明函数,您可以执行此操作:

public function myproduct(){

    $t = 'myproduct';

    $features = function($t = '', &$this = ''){
        // some code goes here

        $this->load->view('features'); // will NOT work

        $this->load->view($t.'/features'); // this should work
    };

    $features($t, $this); // load the features view

}

这应该是你的目标:

public function myproduct($uri_piece = ''){

    $this->load->view('myproduct/'.$uri_piece);

}