2

我无法使用Fat Free提供的 Captcha 插件

请帮我

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

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

3 回答 3

3

它应该是:

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

于 2011-02-22T05:22:28.253 回答
1

修复如此简单! http://techzinger.blogspot.com/2011/02/fat-free-framework-for.html?showComment=1298024374012#c4330544534362949394

于 2011-02-23T18:43:23.433 回答
0

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

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

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

F3::set('FONTS',ROOT.'fonts/');
于 2011-11-20T10:51:45.700 回答