-1
我是新從.NET世界PHP和這是我的代碼,訪問對象的詳細信息在PHP通全局變量
class A
{
Album $album; // In C# .net i could have done this and assigned the display action album data to this
public function displayAction()
{
$form = new ButtonForm();
$id = (int)$this->params('id');
if (!$id) {
return $this->redirect()->toRoute('album', array('action'=>'add'));
}
$album = $this->getAlbumTable()->getAlbum($id);
return array(
'id' => $id,
'album' => $album,
'form' => $form
);
}
}
我怎樣才能做到這一點是PHP? 考慮一下,我來了一個純粹的面嚮對象的技術。所以幫助將不勝感激。
你想要什麼? – zzlalani