Heim  >  Artikel  >  Backend-Entwicklung  >  前辈ZF框架的一些有关问题。

前辈ZF框架的一些有关问题。

WBOY
WBOYOriginal
2016-06-13 13:17:17987Durchsuche

请教各位前辈ZF框架的一些问题。。。。。。。。

$application = Bll_Application::newInstance($this);
$application->run();

--------------------------

function __call($methodName, $args)
  {
  return $this->_forward('notfound','error','mobile');
  }

各位前辈能否解释下以上的几行代码,谢了。

------解决方案--------------------
$application = Bll_Application::newInstance($this); //取得 Bll_Application 类的实例
$application->run(); //执行其中的 run 方法;



function __call($methodName, $args)
{
return $this->_forward('notfound','error','mobile');
}
当调用了类中未定义的方法时,就进入这里
------解决方案--------------------
实实例化一个类
引用并运行

定义一个函数,
返回一个值。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn