运行节点js命令时php exec()返回1

时间:2018-08-10 04:50:12

标签: php node.js return-value

我需要从我的php文件中运行node js命令。我正在使用exec()来做到这一点。 这是我的剧本

<?php

$ret = exec("node -v", $out, $err);
echo print_r($out);
?>

我在这里获得返回值1.如何解决此问题?

1 个答案:

答案 0 :(得分:1)

http://php.net/manual/de/function.exec.php

简短摘要:

所以1表示“其他错误”,您是否尝试过在Shell中运行命令以查看会发生什么情况?