|
代码如下:
PHP复制代码
public function thumb ()
{
header("Content-type: text/html;charset=utf-8");
$config['image_library'] = 'gd2';
$config['source_image'] = './'.$this->input->get('path');
$config['create_thumb'] = TRUE;
$config['thumb_marker'] = '';
$config['maintain_ratio'] = TRUE;
$config['width'] = 75;
$config['height'] = 50;
$config['dynamic_output'] = TRUE;
$this->load->library('image_lib', $config);
if ( ! $this->image_lib->resize())
{
echo $this->image_lib->display_errors();
}
}
复制代码
是个动态缩略的方法,刚写好的时候,是正常的,今天用的时候,不行了。页面显示:图像 ... 因其本身有错无法显示。
排查3小时。。。
最后锁定根目录的index.php文件,原文件ansi编码时,正常。文件编码改成utf-8时,异常。
不明所以,求解。
|
|