Press "Enter" to skip to content

28 Comments

  1. photoshop online
    photoshop online November 30, 2017

    我下载了php-yaf-doc-2.0.zip,用什么软件编译成chm或者其他格式的电子书?

  2. coach factory
    coach factory December 12, 2015

    And if you’re still young, take advantage of it. The older you get, the more responsibilities you will have which means you’ll have less spare time. You’ll also tend to be slower at learning things as you age so seriously, take advantage of your youth.
    coach factory http://coachfactoryoutlet.backpacks2015.com/

  3. achun
    achun April 6, 2012

    Dispatcher request非嵌套问题,发现Yaf对多请求的处理是非嵌套(延期执行)的,虽然forward里面说明了一些,不过如果不是测试还以为只有forward是非嵌套,测试中发现如果一个请求没有完成,强行进行Yaf_Dispatcher::getInstance()->setRequest/dispatch()之类的操作,会发送502错误。
    发现只有在dispatchLoopShutdown时才能进行这样的操作。
    @鸟哥 在dispatchLoopShutdown中dispatch新的request是安全的么?后续Yaf打算request嵌套么?

  4. achun
    achun April 6, 2012

    Dispatcher request非嵌套问题,发现Yaf对多请求的处理是非嵌套(延期执行)的,虽然forward里面说明了一些,不过如果不是测试还以为只有forward是非嵌套,测试中发现如果一个请求没有完成,强行进行Yaf_Dispatcher::getInstance()->setRequest/dispatch()之类的操作,会发送502错误。
    发现只有在dispatchLoopShutdown时才能进行这样的操作。
    @鸟哥 在dispatchLoopShutdown中dispatch新的request是安全的么?
    后续Yaf打算做request的嵌套么?

  5. 雪候鸟
    雪候鸟 April 6, 2012

    @achun 这个问题已经修复 🙂

  6. achun
    achun April 5, 2012

    鸟哥,还是关于forward的问题,在启注册了Yaf_Plugin_Abstract实例后可以hook到preDispatch,postDispatch。发现如果Controller中发生了forward,preDispatch中可以正确的hook到$request和$response,但是postDispatch中的$request变成了forward后的对象,道理上讲的同,不过有几个不方便的地方:
    1.preDispatch和postDispatch受forward影响,两个传入参数不一致,还得手工分析
    2.forward(Controller,Action)这种模式不能在init中进行
    3.forward发生的action不能区分是否skip rander了,即缺少在action中skip rander机制.
    测试代码如下
    Bootstrap.php中的
    public function _initLayout(Yaf_Dispatcher $dispatcher){
    $layout = new LayoutPlugin(‘layout.phtml’);
    Yaf_Registry::set(‘layout’, $layout);
    $dispatcher->registerPlugin($layout);
    }
    其中,LayoutPlugin采用手册中的默认代码(只有hook方法)
    index.php
    class IndexController extends Yaf_Controller_Abstract {
    public function indexAction() {
    $this->forward(‘Login’,’login’);
    }
    }
    login.php
    class LoginController extends Yaf_Controller_Abstract {
    public function loginAction() {
    echo __METHOD__,”;
    }
    }

  7. achun
    achun April 5, 2012

    关于forward的问题解决了,因为是照抄http://yaf.laruence.com/manual/yaf.class.controller.forward.html中的例子,而例子里面forward到同一个控制器,才把forward写在了init里面,如果是不同的控制器应该在action里面写,合理,这样就对了,感谢鸟哥,额自言自语了

  8. achun
    achun April 5, 2012

    抱歉,看来我真是不动php扩展的写法,做了测试发现,我用的是 $this->forward(‘Login’,’login’);也就是forward到了另一个控制器,应该是缺少其他代码造成的,这个如何做呢?

  9. achun
    achun April 5, 2012

    鸟哥:
    http://yaf.laruence.com/manual/yaf.class.controller.forward.html
    上说
    forward( string $controller ,string $action ….)
    yaf_controller.c 中
    PHP_METHOD(yaf_controller, forward) {
    zval *controller, *module, *action, *args, *parameters;

    if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, “z|zzz”….

    我不懂php扩展的写法,看你其他的代码好像应该是”s|ss”这样的类型吧?

  10. achun
    achun April 4, 2012

    这是个bug么?
    Yaf在匹配配置文件的节(section)的时候,不是对名称完全匹配,比如配置里面有
    [product]

    new Yaf_Application(“conf/app.ini”,’p’)//照样可以被匹配到

  11. Hey!, pretty cool and interesting stuff, I’m a great fan of zend framework, could you provide some speed benchmark? and maybe, just maybe, write the docs in english :P, thanks :).

  12. qai41
    qai41 July 15, 2011

    恭喜啊, 挺不错的东西

  13. seedvirus
    seedvirus July 10, 2011

    鸟哥,感谢你的无私分享

  14. 杜壮壮
    杜壮壮 June 30, 2011

    太棒了
    Maintainers Xinchen Hui

  15. 雪候鸟
    雪候鸟 June 28, 2011

    @kelezyb 在googlecode上已有

  16. kelezyb
    kelezyb June 28, 2011

    能提供一个Win下面的Dll下载么.有利于这个框架的推广啊.感觉这个框架需要做的事情还有很多.

  17. clover
    clover June 28, 2011

    我下载了php-yaf-doc-2.0.zip,用什么软件编译成chm或者其他格式的电子书?????

  18. venkman
    venkman June 27, 2011

    希望能早日用于生产环境啊

  19. pytonic
    pytonic June 26, 2011

    con~

  20. Fising
    Fising June 26, 2011

    膜拜大神。Yaf官网地址是?

  21. yufeng
    yufeng June 26, 2011

    哗,哥V5啊,是值得纪念,前10的回复会有饭请么,吼吼。

  22. 雪候鸟
    雪候鸟 June 26, 2011

    @cfc4n @fcten
    三种途径, 1. 开发PHP(PHP Core developer) 2. 开发PECL 3. 翻译PHP手册文档

  23. fcten
    fcten June 26, 2011

    我也想要一个 at php.net的马甲 >.<

  24. cfc4n
    cfc4n June 26, 2011

    只有在PECL上贡献项目的人才给 at php.net的马甲?
    提交BUG不给吗?

Comments are closed.