Yaf_Dispatcher 类

(Yaf >=1.0.0)

介绍

Yaf_Dispatcher 的目的是初始化请求环境,路由传入的请求,然后分派任何发现的动作;它会聚合所有响应并在进程完成后返回它们。

Yaf_Dispatcher 还实现了单例模式,这意味着在任何给定时间只能有一个实例可用。这允许它充当注册表,分派进程中的其他对象可以在其中提取信息。

类概要

final class Yaf_Dispatcher {
/* 属性 */
protected $_router;
protected $_view;
protected $_request;
protected $_plugins;
protected static $_instance;
protected $_auto_render;
protected $_default_module;
protected $_default_action;
/* 方法 */
public __construct()
public autoRender(bool $flag = ?): Yaf_Dispatcher
public disableView(): bool
public static getInstance(): Yaf_Dispatcher
public initView(string $templates_dir, array $options = ?): Yaf_View_Interface
public setErrorHandler(call $callback, int $error_types): Yaf_Dispatcher
}

属性

_router

_view

_request

_plugins

_instance

_auto_render

_return_response

_instantly_flush

_default_module

_default_controller

_default_action

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top