tp圖片驗證碼使用

生成驗證碼圖片(純數字)php

public function getimgcode()
{
    $Verify = new \Think\Verify();
    $Verify->codeSet = '0123456789';
    $Verify->entry();
}

使用驗證碼code

<img src="上面方法連接"/>圖片

後臺驗證get

$Verify = new \Think\Verify();
if ($Verify->check($imgcode)) {
    //正確
} else {
    //不正確
}
相關文章
相關標籤/搜索