0
我在學習Zend,並且仍然遇到以下try-catch語句。例如:
try {
$album = $this->getAlbumTable()->getAlbum($id);
}
catch (\Exception $ex) {
return $this->redirect()->toRoute('album', array(
'action' => 'index'
));
}
我不明白什麼是反斜槓的重要性「\」中的異常類名的弗朗象徵。