Codeigniter 3 验证码助手 create_captcha returns 布尔
Codeigniter 3 captcha helper create_captcha returns bool
您好,我正在尝试进行验证码验证,但是当我调用 create_captcha 函数时,它 returns bool/false 而不是数组。我不知道是什么问题? .我正在使用 linux/php-7.3 并尝试启用 gd 库但没有成功。
$this->load->helper('captcha');
$vals = array(
'img_url' => base_url('public/captcha'),
'img_path' => FCPATH.'public/captcha',
'img_height' => 45,
'word_length' => 5,
'img_width' => '45',
'font_size' => 10
);
var_dump($vals);
$cap = create_captcha($vals);
echo $cap['image'];
您的代码段中缺少验证码
$vals = array(
'word' => 'Captcha word',
'img_path' => './captcha/',
'img_url' => 'http://example.com/captcha/',
'font_path' => './path/to/fonts/texb.ttf',
'img_width' => '150',
'img_height' => 30,
'expiration' => 7200
);
$cap = create_captcha($vals);
echo $cap['image'];
注意“验证码”文件夹必须是可写的(666 或 777)
您好,我正在尝试进行验证码验证,但是当我调用 create_captcha 函数时,它 returns bool/false 而不是数组。我不知道是什么问题? .我正在使用 linux/php-7.3 并尝试启用 gd 库但没有成功。
$this->load->helper('captcha');
$vals = array(
'img_url' => base_url('public/captcha'),
'img_path' => FCPATH.'public/captcha',
'img_height' => 45,
'word_length' => 5,
'img_width' => '45',
'font_size' => 10
);
var_dump($vals);
$cap = create_captcha($vals);
echo $cap['image'];
您的代码段中缺少验证码
$vals = array(
'word' => 'Captcha word',
'img_path' => './captcha/',
'img_url' => 'http://example.com/captcha/',
'font_path' => './path/to/fonts/texb.ttf',
'img_width' => '150',
'img_height' => 30,
'expiration' => 7200
);
$cap = create_captcha($vals);
echo $cap['image'];
注意“验证码”文件夹必须是可写的(666 或 777)