|
我有一个global_func_helper.php文件在helper文件夹里边。
global_func_helper.php有个函数需要调用系统图片处理的UPLOAD类,但是按照 $this->load->library('upload', $config);
的方法引用就出错。请问正确的写法应该是怎么样的?
以下为部分代码:
function upfile($filename=''){
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
}
谢谢解答!~ |
|