在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类中为其构造函数传递参数?任何帮助将不胜感激。
答案 0 :(得分:2)
https://www.codeigniter.com/user_guide/general/creating_libraries.html
$params = array('type' => 'large', 'color' => 'red');
$this->load->library('Someclass', $params);