0

在 OOP(在我的例子中是 PHP)中,

class Hello{
    __construct($a, $b){
    return $a * $b;
    }
}

我们将值传递给构造函数:

$hello = new Hello(5, 10);

现在,在 codeigniter 中,我有这个库作为 Hello。

class Hello{
    __construct($a, $b){
    return $a * $b;
    }
}

并将这个库加载到我的控制器中

$this->load->library('hello');

我如何为其构造函数传递 hello 类的参数?任何帮助将不胜感激。

4

1 回答 1

2

https://www.codeigniter.com/user_guide/general/creating_libraries.html

$params = array('type' => 'large', 'color' => 'red');

$this->load->library('Someclass', $params);
于 2013-04-09T10:54:38.570 回答