2014-05-17 2 views

답변

2

당신은 constant from Phalcon\Mvc\View에 대한 참조를 만들고있어 원인이되는 것입니다. 코드에서이 클래스에 "use"를 추가하십시오.

use Phalcon\Mvc\View; 

class ManageController extends ControllerBase 
{ 
    public function indexAction() 
    { 
     $this->view->setRenderLevel(View::LEVEL_ACTION_VIEW); 
    } 
} 
+0

당신이이 질문에 나를 너무 도와 드릴까요 : http://stackoverflow.com/questions/23716476/phalcon-how-to-loop-through-associative-array-modelfind-to-output-keys – Ismail

관련 문제