我尝试运行 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) failed: Permission denied”
当我在终端中运行完全相同的命令时,它工作正常!
有什么解决办法吗?
谢谢..