我正在PHP
使用Symfony2
.
MainContent
我在文件中定义了一个类MainController.php
我不得不在其他名为的控制器文件中使用这个类SecurityController.php
尽管这两个类都定义在同一个命名空间中,但它给出了错误:
Class 'MainContent' not found...
所以我尝试再次定义该类,SecurityController.php
但结果是:
Cannot redeclare class 'MainContent...'
我不明白,它要么被声明,要么没有。
事实上,我是一名C#
程序员,也许我因为这些语言之间的一些差异而感到困惑。