我是 .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
);
}
}
我怎么能做到这一点是 PHP ?考虑到我来了一个纯面向对象的技术。因此,我们将非常感谢您的帮助。