在学习zend framework的时候很多的问题只能看源代码,为了加深自己的理解,记录下来平时用到的方法:
1在控制器里
$serviceLocator = $this->getServiceLocator();
2在Module.php里
use Zend\Mvc\MvcEvent;
class Module
{
public function onBootstrap(MvcEvent $e)
{
$serviceLocator = $e->getApplication()->getServiceManager();
}
}
$serviceLocator = $this->getController()->getServiceLocator();