我有一个文件Orders.php,我想在其中使用类“Test”函数。问题是类文件位于项目根文件夹中,但我无法使用它。
orders.php:
<?php
namespace AppBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Test;
protected function execute(InputInterface $input, OutputInterface $output)
{
ini_set('memory_limit', '4000M');
$test = new \Test(true);
exit;
}
类文件test.php是:
<?php
namespace Test;
class Test
{
public function __construct($connect = null, $query = null)
{
if ($connect)
{
$this->connect();
}
if ($query)
{
$this->query($query);
}
}
}
现在test.php类文件位于项目根文件夹中。 orders.php文件位于public_html \ project \ src \ AppBundle \ Command \ order.php
如果它位于项目的根目录或任何其他目录中,我应该如何使用类测试?我用“/”编写命名空间,所以应该引用根目录,没有?
答案 0 :(得分:2)
如果要从已定义的PSR-0 / PSR-4目录之外加载,则需要自动加载test.php
。您可以autoload single files更新composer.json
文件:{/ p>
{
"autoload": {
"files": ["src/test.php"]
}
}
更新composer.json
后,您需要运行以下命令:
$ composer dumpautoload
答案 1 :(得分:0)
发现我没有必要在我的类文件中使用命名空间。自动加载器也有帮助。谢谢。