网上down了Securimage 3.0 用来做验证码
用的
$img->captcha_type = Securimage::SI_CAPTCHA_MATHEMATIC; // show a simple math problem instead of text
两个数字的简单运算模式
发现出现验证码为零 如 5-5 输入验证码0 验证不通过
修改securimage.php第1007行
if ($code != '') {
改为
if ($code !== '') {
通过验证
Securimage 地址