我的代碼...................:ZendFramework功能的init()不工作
<?php
namespace Application\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
class IndexController extends AbstractActionController
{
public function init()
{
echo 'init worked';
}
public function indexAction()
{
return new ViewModel();
}
public function testAction()
{
echo 'test';
}
}
爲什麼初始化函數不工作?也許我需要改變一些配置?或者我需要使用標準的php __construct()?
注意,工廠只需要爲controllersm注入依賴關係,而不需要'invokables'更簡單 – Maks3w