php Fat Free,如何使用captcha插件

时间:2011-02-02 09:22:54

标签: php frameworks captcha fat-free-framework

我无法使用Fat Free

提供的Captcha插件

请帮帮我

F3::route ( 'GET /captcha',captcha);

function captcha(){
    F3::captcha(100,100,8);
}

3 个答案:

答案 0 :(得分:3)

应该是:

F3::route ( 'GET /captcha','captcha');

答案 1 :(得分:1)

答案 2 :(得分:0)

让F3知道您的字体文件夹在哪里

我在index.php文件中有以下内容

define('ROOT',realpath(__dir__.'/../').'/');

F3::set('FONTS',ROOT.'fonts/');