我要从PHP文件运行npm。我的package.json文件位于folder1 / folder2内部。从php运行 db.xxxxx.aggregate(
[
// Stage 1
{
$unwind: {
path : "$cov",
includeArrayIndex : "arrayIndex", // optional
preserveNullAndEmptyArrays : false // optional
}
},
// Stage 2
{
$match:{
"cov.res.timestamp": {
$gte:1571424600,
$lte:1571597580
}}
}
])
命令时,出现此错误。
exec
我的compile.sh文件所在的位置
// allow script to run for up to 10 minutes
set_time_limit(600); // seconds
// output of script will be saved in $output
exec('./compile.sh 2>&1', $output);
// display $output
print_r($output);
我遇到错误
npm start --prefix folder1/folder2