このスクリプトを実行するのは難しい
public function execDoxygen($doxyFile)
{
$command = "doxygen $doxyFile";
exec($command, $output);
return $output;
}
出力は「Exiting...」です。
同じファイルの端末で個別に実行すると、うまく機能します。
exec( "doxygen --help")を実行すると、正しく機能します。
なぜ変数で動作しないのですか?