|
ci验证码不能显示 之前在论坛搜了没找到答案
szq_captcha.php文件代码
PHP复制代码
<?php
/*
*
* CI框架辅助函数之验证码辅助函数
*/
class Szq_captcha extends CI_Controller
{
function __construct ()
{
parent ::__construct ();
}
function index ()
{
$this->load->helper('captcha');
$vals = array(
'word' => 'Random word',
'img_path' => './backup/',
'img_url' => 'http://localhost/aqzf_ci/index.php/szq_captcha/',
'font_path' => './path/to/fonts/texb.ttf',
'img_width' => '150',
'img_height' => 30,
'expiration' => 7200
);
$cap = create_captcha ($vals);
$data = array('captcha_time' => $cap['time'],
'ip_address' => $this -> input -> ip_address(),
'word' => $cap['word']
);
var_dump($cap);
return isset($cap['image'])? $cap['image']:'Agin,Please refresh. ';
}
}
?>
复制代码
|
|