本文整理匯總了PHP中application::notfound方法的典型用法代碼示例。如果您正苦於以下問題:PHP application::notfound方法的具體用法?PHP application::notfound怎麽用?PHP application::notfound使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類application
的用法示例。
在下文中一共展示了application::notfound方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: explode
//Requiert le Model Global
require ROOT . 'core/manager.php';
//Requiert le Manager Global
require ROOT . 'core/controller.php';
//Requiert le Controller Global
$params = explode('/', $_GET['p']);
//Divise l url en 2 tab[0] = controller, tab[1] = action
if (!empty($params[0]) && !empty($_SESSION['id'])) {
$controller = $params[0];
// recupère le controller
} else {
$controller = 'home';
}
if (!empty($params[1])) {
$action = $params[1];
} else {
$action = 'index';
}
if (file_exists('controllers/' . $controller . '.php')) {
require 'controllers/' . $controller . '.php';
//Requiert le controller concerné
$controller = new $controller();
//Init le controller
}
if (method_exists($controller, $action)) {
$controller->{$action}();
} else {
require 'controllers/application.php';
$app = new application();
$app->notfound();
}