我正在学习 Zend,但仍然遇到以下 try-catch 语句。例如:
try {
$album = $this->getAlbumTable()->getAlbum($id);
}
catch (\Exception $ex) {
return $this->redirect()->toRoute('album', array(
'action' => 'index'
));
}
我不明白异常类名前面的反斜杠“\”符号的重要性。