命名空间在php中无法正常工作

时间:2016-02-20 12:26:40

标签: php namespaces

我是php名称空间的新手 我的目录结构是

 application/
 system/
    core/
      route.php 
    library/
 index.php

我在route.php中将名称空间声明为main 我尝试使用

从index.php访问它
 use core;
 $t=new core\route;      -> didn't work

再次尝试使用

 use system\core;
   $t=new system\core\route;

但没有任何效果显示“找不到课程错误”

0 个答案:

没有答案