本文整理匯總了PHP中Basic::requireOr404方法的典型用法代碼示例。如果您正苦於以下問題:PHP Basic::requireOr404方法的具體用法?PHP Basic::requireOr404怎麽用?PHP Basic::requireOr404使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Basic
的用法示例。
在下文中一共展示了Basic::requireOr404方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dispatch
public function dispatch()
{
$view_controllerName = $this->controllerName;
$view_actionName = $this->actionName;
$controllerClassName = ucfirst($this->controllerName) . 'Controller';
if (file_exists('./controllers/' . $controllerClassName . '.php')) {
require './controllers/' . $controllerClassName . '.php';
} else {
$view_controllerName = DEFAULT_CONTROLLER_NAME;
$controllerClassName = DEFAULT_CONTROLLER_NAME . 'Controller';
Basic::requireOr404('./controllers/' . $controllerClassName . '.php');
}
//把controller中輸出的內容保留並在view後輸出
ob_start();
Lugit::$controller = new $controllerClassName($this->array_parameter);
if (method_exists(Lugit::$controller, $this->actionName . 'Action')) {
//方法存在,調用方法
Lugit::$controller->{$this->actionName . 'Action'}();
} else {
if (method_exists(Lugit::$controller, DEFAULT_ACTION_NAME . 'Action')) {
//方法不存在,調用默認方法
$view_actionName = DEFAULT_ACTION_NAME;
Lugit::$controller->{DEFAULT_ACTION_NAME . 'Action'}($this->actionName);
} else {
//方法不存在 且 默認方法不存在,返回404錯誤
throw new NotFoundException();
}
}
$controller_output = ob_get_clean();
if (empty(Lugit::$view)) {
Lugit::$view = new View(Lugit::$controller->getVars());
}
$template = isset($this->template) ? $this->template : './views/scripts/' . $view_controllerName . '/' . $view_actionName . '.phtml';
Lugit::$view->render($template);
echo $controller_output;
}