我正在创建一个 PHP 文件以将值传递给 c++ .exe,然后它将计算输出并返回该输出。但是,我似乎无法将 .exe 的输出返回到 PHP 文件中。
PHP代码:
$path = 'C:enter code here\Users\sumit.exe';
$handle = popen($path,'w');
$write = fwrite($handle,"37");
pclose($handle);
C++ 代码:
#include "stdafx.h"
#include <iostream>
using namespace std;
// Declaation of Input Variables:
int main()
{
int num;
cin>> num;
std::cout<<num+5;
return 0;
}