|
代码如下
$this->load->helper('captcha');
$vals = array(
'img_path' => './captcha/',
'img_url' => 'http://127.0.0.1/photo/captcha/',
'img_width' => '48',
'img_height' => '22'
);
$cap = create_captcha($vals);
echo $cap['image'];
图片显示一个X,直接用路径访问显示找不到页面,路径正确http://127.0.0.1/photo/captcha/1306984939.14.jpg,图片也存在,不知道什么原因 |
|