我正在使用 CodeIgniter Captcha Helper 为我的网站生成验证码图像。它工作得很好。但唯一的问题是它会为验证码图像生成一个随机名称。如何更改 CodeIgniter Captcha Helper 生成的图像名称?我已使用以下代码生成我的验证码。
$this->load->helper('captcha');
$keyword = $this->generate_random_keyword();
$vals = array(
'word' => $keyword,
'img_path' => './captcha/',
'img_url' => base_url() . '/captcha/',
'img_width' => '150',
'img_height' => '35',
'border' => 0,
'font_path' => './fonts/texb.ttf',
'expiration' => 3600
);
$captcha = create_captcha($vals);