symfony进程未终止引用的字符串

时间:2017-06-15 08:44:46

标签: php symfony process console doctrine

我有一个问题。

我使用学说。

在doctrine中有一个'php vendor / bin / doctrine orm:convert-mapping --namespace =“Album \ Entity”--force --from-database annotation ./'for console。

我想使用组件'SYMFONY PROCESS'这个命令......

$nameSpace='src\\app\\mobi\\v1\\model\doctrine\\';
    $process = new Process('php vendor/bin/doctrine orm:convert-mapping --namespace="'.$nameSpace.'" --force  --from-database annotation ./');
    $process->run();

    // executes after the command finishes
    if (!$process->isSuccessful()) {
        throw new ProcessFailedException($process);
    }

    echo $process->getOutput();

但是..错误:错误输出:

sh:1:语法错误:未终止的引用字符串

什么是问题?怎么解决?

0 个答案:

没有答案