Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法使用Fat Free提供的 Captcha 插件
请帮我
F3::route ( 'GET /captcha',captcha); function captcha(){ F3::captcha(100,100,8); }
它应该是:
F3::route ( 'GET /captcha','captcha');
修复如此简单! http://techzinger.blogspot.com/2011/02/fat-free-framework-for.html?showComment=1298024374012#c4330544534362949394
让 F3 知道您的字体文件夹在哪里
我的 index.php 文件中有以下内容
define('ROOT',realpath(__dir__.'/../').'/'); F3::set('FONTS',ROOT.'fonts/');