index.phpは次のようになります。
// @todo: check if $_SERVER['PATH_INFO'] is set
$parts = explode('/', trim($_SERVER['PATH_INFO'], '/')); // get the part between `index.php` and `?`
// build class name & method name
// @todo: implement default values
$classname = ucfirst(strtolower(array_shift($parts)));
$methodname = "action_" . array_shift($parts);
// include controller class
// @todo: secure against LFI
include "classes/$classname.php"
// create a new controller
$controller = new $classname();
// call the action
// @todo: make sure enough parameters are given by using reflection or default values
call_user_func_array(Array($controller, $methodname), $parts);
URLからindex.phpを削除するための.htaccess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
PHPについてさらに学ぶために独自のフレームワークを作成することは常に興味深いことですが、実際にもっと大きなものをコーディングしている場合は、よく知られた、十分に文書化されたフレームワークを使用することを強くお勧めします。そこには多くの優れたフレームワークがあり、それらは十分にテストされており、以前に本番環境で使用されていました。上記のすべての@todo
通知をご覧ください。これらはすべてフレームワークによってすでに処理されている問題であり、これらのことを気にする必要はありません。