如果我有这样的网址:http://localhost/customer/view/7
'路线' => '/customer[/:action[/:id]]'
我想为我的 editAction() 获取 7 作为 $id 但我不能使用
$id = (int) $this->params()->fromRoute('id' , '0');
那么我怎样才能得到它呢?谢谢
如果我有这样的网址:http://localhost/customer/view/7
'路线' => '/customer[/:action[/:id]]'
我想为我的 editAction() 获取 7 作为 $id 但我不能使用
$id = (int) $this->params()->fromRoute('id' , '0');
那么我怎样才能得到它呢?谢谢