当我尝试使用命名空间并在PHP中使用这样的语句时出现错误。
严重错误:未捕获的错误:找不到类'demo \ TestController'
我有两个文件“ TestController.php”和“ Testing.php”
Demo \ TestController.php
<?php
namespace Demo;
class TestController
{
function show()
{
echo 'Here We Go';
}
}
?>
Demo \ Testing.php
<?php
namespace Demo;
use Demo\TestController as Ninja;
$TestController = new Ninja();
$TestController->show();
?>
可以添加类而无需一次包含。 有人请给我一些指导,以解决问题?