5

有没有办法在Symfony 控制台应用程序中获取运行路径?例如(假设 php 解释器在PATH):

cd /tmp
php /home/user/myapplication/app/console.php mycommand

应该从. /tmp_console.php/tmp

4

1 回答 1

12

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());
    }
}
于 2013-09-23T19:11:56.903 回答