私は.netの世界から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
);
}
}
どうすればこれを行うことができますか?私が純粋なオブジェクト指向技術になったと考えてください。そのため、助けをいただければ幸いです。