我是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;
但没有任何效果显示“找不到课程错误”