PHP exec和参数

时间:2014-04-08 09:05:56

标签: php c++ exec exe

我需要在.exe文件中使用参数

foreach ($pieces as $value) {
$output = 0;
$output = exec("C:\\xampp\\htdocs\\VWM\\C++ Scripts\\getStemWord.exe $value");  
var_dump($output);      
}

$ value是表单中的字符串。

和我的getStemWord.cpp

# include <iostream>
using namespace std;

int main(int argc, char * argv []) {
string word(argv[1]);
cout  << word;
return 0;
}

在我的php页面中,我看到了

  

string(0)&#34;&#34;

现在我有一个解决方案

$output = exec("C:\\xampp\\htdocs\\VWM\\C++ Scripts && getStemWord.exe $value");

0 个答案:

没有答案