public function verify()
{
ob_end_clean();
$verify = new Verify();
$verify->entry();
}
在输出验证码前加上ob_end_clean()调用,然后就正常了
public function verify()
{
ob_end_clean();
$verify = new Verify();
$verify->entry();
}
在输出验证码前加上ob_end_clean()调用,然后就正常了