使用Boost :: Process运行php命令

时间:2012-11-09 17:50:33

标签: php boost process stdout permission-denied

我尝试运行PHP脚本并从stdout获取输出,代码如下所示:

using namespace boost::process;

std::string exec="php";
std::vector<std::string> args;

// I must to throw the exe by argument
args.push_back("php");
args.push_back("a.php");

context ctx;
ctx.stdout_behavior = capture_stream();
child c = launch(exec, args, ctx);

pistream &is = c.get_stdout();

stdout没有信息,但在stderr我得到:

“boost :: process :: detail :: posix_start:execve(2)失败:权限被拒绝”

当我在终端中运行完全相同的命令时,它工作正常!

任何解决方案?

谢谢..

1 个答案:

答案 0 :(得分:3)

谢谢@hakre,你给了我正确的方向!

我去/ usr / bin /检查权限,看到php5命令与php具有相同的权限(php是php5的链接)。

我不明白为什么,但是当我将命令替换为php5时,之前的错误被替换为:“没有这样的文件或目录”,当我给出完整路径时,它工作正常:

exec="/usr/bin/php5";
args.clear();
args.push_back("php5");