有没有办法在Symfony 控制台应用程序中获取运行路径?例如(假设 php 解释器在PATH
):
cd /tmp
php /home/user/myapplication/app/console.php mycommand
应该从. /tmp
_console.php
/tmp
有没有办法在Symfony 控制台应用程序中获取运行路径?例如(假设 php 解释器在PATH
):
cd /tmp
php /home/user/myapplication/app/console.php mycommand
应该从. /tmp
_console.php
/tmp
getcwd()
会做你需要的。您可以从任何目录执行 app/console,PHP 会知道它是哪一个。
我使用以下示例来验证这一点。
<?php
namespace Acme\DemoBundle\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;
class DemoCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('demo:cwd')
->setDescription('Get Current Working Directory')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$output->writeln(getcwd());
}
}