Zend framework catch(异常$ex)和catch(\Exception$ex)之间有什么区别?

Zend framework catch(异常$ex)和catch(\Exception$ex)之间有什么区别?,zend-framework,exception,try-catch,Zend Framework,Exception,Try Catch,我正在学习Zend,但仍然遇到以下try-catch语句。例如: try { $album = $this->getAlbumTable()->getAlbum($id); } catch (\Exception $ex) { return $this->redirect()->toRoute('album', array( 'action' => 'index' ));

我正在学习Zend,但仍然遇到以下try-catch语句。例如:

    try {
        $album = $this->getAlbumTable()->getAlbum($id);
    }
    catch (\Exception $ex) {
        return $this->redirect()->toRoute('album', array(
            'action' => 'index'
        ));
    }

我不明白异常类名前面的反斜杠“\”符号的重要性是什么

这是PHP5.3中引入的名称空间


它可以阻止异常被它当前所在的任何其他名称空间捕获,并且只使用包含异常类的根名称空间,这是PHP5.3中引入的名称空间

它可以阻止异常被它当前所在的任何其他名称空间捕获,并且只使用保存异常类的根名称空间