我在php中的名称空间和“ use”语句中出错

时间:2018-07-12 10:54:33

标签: php namespaces

当我尝试使用命名空间并在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();
?>

可以添加类而无需一次包含。 有人请给我一些指导,以解决问题?

0 个答案:

没有答案