首页 > PHP资讯 > PHP培训技术 > yaf视频教程-插件的使用和讲解

yaf视频教程-插件的使用和讲解

PHP培训技术
yaf视频教程的插件的讲解,插件plugin支持7种hook,大家可以去官方查看官方文档,这部分主要讲yaf的插件的使用和一些类的简单分析,具体的大家可以看视频!!


Demo.php 插件实例代码

class DemoPlugin extends Yaf_Plugin_Abstract{
    public function routerStartup(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){
        if(strtolower($request->getMethod())=="get"){
            if($request->get("id")==1){
                echo "插件启动
";
            }
        }
    }
    public function routerShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){
        if(strtolower($request->getMethod())=="get"){
            if($request->get("id")==2){
                echo "插件关闭";
            }
        }
    }


    public function dispatchLoopStartup(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){
        echo "Plugin dispatchLoopStartup called
n";
    }


    public function postDispatch(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){
        echo "Plugin postDispatch called
n";
    }


    public function preDispatch(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){
        echo "Plugin preDispatch called
n";
        var_dump($request);
    }


    public function preResponse(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){
        echo "Plugin preResponse called
n";
    }


    public function dispatchLoopShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){
        echo "Plugin dispatchLoopShutdown called
n";
    }
}
bootstrap.php配置代码


class Bootstrap extends Yaf_Bootstrap_Abstract{
    public function _initConfig(Yaf_Dispatcher $dispatcher){
            //var_dump($dispatcher->getRequest());
            $config = Yaf_Application::app()->getConfig();
            Yaf_Registry::set("config", $config);
    }


    public function _initRouter(){


    }


    public function _initSpaceName(){
        $loader = Yaf_Loader::getInstance()->registerLocalNamespace(array("Test","Dum"));
        Yaf_Registry::set("loader", $loader);
    }




    public function _initPlugin(Yaf_Dispatcher $dispatcher){
        $demo = new DemoPlugin();
        $dispatcher->registerPlugin($demo);
    }
}

PHP培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持18不支持0