首页 >后端开发 >php教程 >在名字空间中怎么使用php 的内置类

在名字空间中怎么使用php 的内置类

WBOY
WBOY原创
2016-06-13 10:51:10893浏览

在名字空间中如何使用php 的内置类?
你好,初学php,遇到问题,求教:
一下是一个php 文件中的代码。包含了2个名字空间,test2 和test4 , 在test2中 Exception 类抛出错误
在test4 空间中检测错误,但是运行时说 test2 中找不到 Exception类,所以在红色部分的 Exception类
前面添加 \ 指明根空间,但是在 test4 中又提示 catch 语句中 Exception $e 错误
请问我该如何修改才正确,谢谢。
namespace test2{
  class A{
  private $file_id ;
   
  public function file_open($path_file_name){
  $this->[email protected]($path_file_name , 'r');
  if($this->file_id==false){ throw new \Exception("path_file_name isnot EXIST");
  echo(nl2br(sprintf("file open failed\n"))); }
  }
  }
}

namespace test4{
  use test2;
  try{
  $obj_A = new test2\A();
  $path_name = "/home/zhiys/php/111.php";
  $obj_A->file_open($path_name) ;
  }catch(Exception $e){ ... }  

}

------解决方案--------------------
catch(\Exception $e)

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn