作者:gjagtm2502855737 | 来源:互联网 | 2023-08-06 16:18
感觉thinkphp验证码不错,我已经把它的扩展和字体拿出来了,如何在普通PHP页面使用呢?首先我加载include_oncecore/verify.class.php
感觉thinkphp验证码不错,我已经把它的扩展和字体拿出来了,如何在普通PHP页面使用呢?
首先我加载
include_once 'core/verify.class.php';
然后加载类
1 2 3 4 5 6 7
| $Verify = new Verify();
$Verify = new Verify();
$cOnfig= array(
'fontSize' => 30, // 验证码字体大小
'length' => 3, // 验证码位数
'useNoise' => false, // 关闭验证码杂点 |
);
1 2 3 4 5 6
| $Verify->entry($config);
//报错
Notice: Use of undefined constant NOW_TIME - assumed 'NOW_TIME 175
Notice: Undefined variable: session 176
Fatal error: Function name must be a string 176 |
感觉这样写不对
如何写呢?