我正在學習無脂框架,但我遇到了一個問題。無脂框架:F3自動加載器
我嘗試了F3自動加載,並得到這樣的:
Internal Server Error
Fatal error: Class 'Gadgets\iPad' not found
在index.php
我已經寫:
$f3->set('AUTOLOAD','autoload/');
$obj=new Gadgets\iPad;
,並提出了在其文件名爲Gadgets
文件夾,命名爲ipad.php
在文件中我把一個類
<?php
namespace Gadgets;
class iPad {}
?>