在 services.php 中添加调度程序时,它似乎无法访问自动加载器以包含类。
示例:/config/services.php
$di->set('dispatcher', function() use ($di) {
require __DIR__.'/../../app/plugins/security.php';
$eventsManager = $di->getShared('eventsManager');
$security = new Security($di);
$eventsManager->attach('dispatch', $security);
$dispatcher = new Phalcon\Mvc\Dispatcher();
$dispatcher->setEventsManager($eventsManager);
return $dispatcher;
});
包含要求是否正确?这是我似乎可以访问安全插件的唯一方法?我确定有更好的方法吗?
这两个https://github.com/phalcon/invo与 Phalcon 主页上的演示不同?
有人澄清吗?