我想使用管道将数据从php Web应用程序发送到c ++运行程序。 我不确定究竟是什么管道以及如何使用它,我找到的大部分文档都是针对unix机器但我在Windows上本地工作...
以下是我的简单问题:
目前我要做的事情肯定非常糟糕:
C ++
while(true){
ifstream infile("test.txt");
if (infile.good())
{
string sLine;
getline(infile, sLine);
// do some stuff
}
infile.close();
}
php:
<?php
$resPipe = fopen("myfile", "w");
fwrite($resPipe, "foo");
fclose($resPipe);
?>