类库文件在application/libraries/
注意几点:
1.传参只能传一个,多个参数已数组方式传
$params = array(
'a'=>1,
'b'=>2
)
$this->load->library('xxxx', $params)
2.加载之后调用只能用小写
$this->xxxx->method();
类库文件在application/libraries/
注意几点:
1.传参只能传一个,多个参数已数组方式传
$params = array(
'a'=>1,
'b'=>2
)
$this->load->library('xxxx', $params)
2.加载之后调用只能用小写
$this->xxxx->method();
本文标题:CodeIgniter 之加载类库和改造核心库
本文链接:https://www.haomeiwen.com/subject/vpixgftx.html
网友评论