0
爲什麼params插件魔術功能默認轉發路由?Params插件魔術方法功能
爲什麼zf無法從類似下面的示例中獲取函數?
public function __invoke($param = null,$type='Route', $default = null)
{
if ($param === null) {
return $this;
}
$type = 'from'.ucfirst($type);
// Need to check function exist, if not must throw some error
return $this->$type($param, $default);
}
示例使用
$this->params('name','post');
$this->params('token','get');
$this->params('action'); // this will return from route like default one.
我怎麼能延長默認PARAMS插件這樣嗎?這是一個很好的舉措?
謝謝薩姆。我需要了解更多zf2的方式解決:) 我正在閱讀您的博客文章,我發現這個https://github.com/zendframework/zf-web項目,我認爲它會幫助我瞭解更多。 –