尝试将2添加到整数时,我收到此错误。我正在使用Codeigniter框架。
致命错误:第180行的D:\ wamp \ www \ application \ libraries \ Gen_images.php中不支持的操作数类型
以下是它的名称:
// Now process the image
var_dump($this->upload->data('image_width'));
$this->gen_login->resize($file_name, $this->upload->data('image_width'), $this->upload->data('image_height'));
我在line 180
上收到的错误是:
$config['width'] = $width + 2;
所以我认为$ width必须是一个数组或字符串,所以我无法添加它,但是var dump
显示了这个:
array
'file_name' => string 'genyx_1341414096.jpg' (length=20)
'file_type' => string 'image/jpeg' (length=10)
'file_path' => string 'D:/wamp/www/beer/uploads/' (length=25)
'full_path' => string 'D:/wamp/www/beer/uploads/genyx_1341414096.jpg' (length=45)
'raw_name' => string 'genyx_1341414096' (length=16)
'orig_name' => string 'genyx_1341414096.jpg' (length=20)
'client_name' => string '294207_177080222375077_100002193022560_361510_991268937_s.jpg' (length=61)
'file_ext' => string '.jpg' (length=4)
'file_size' => float 55.85
'is_image' => boolean true
'image_width' => int 720
'image_height' => int 479
'image_type' => string 'jpeg' (length=4)
'image_size_str' => string 'width="720" height="479"' (length=24)
任何人都可以帮助我吗?
答案 0 :(得分:0)
上面显示的任何代码中都没有名为$width
的变量......
$width
绝对不是字符串。我可以保证。