我有一个问题。
我使用学说。
在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:语法错误:未终止的引用字符串
什么是问题?怎么解决?