When I compile C/C++ program with popen in php... I got this error:
g++: error trying to exec 'cc1plus': execvp: No such file or directory
but if I run php code in shell.. it works fine..
in Arch Linux..
PHP Code:
<?php
function rfile($fp) {
$out="";
while (!feof($fp)) {
$out.= fgets($fp, 1024000);
}
return $out;
}
$p = popen('g++ -Wall -g aplusb.cc -o aplusb 2>&1', 'r');
$result = rfile($p);
pclose($p);
echo $result;
?>
thanks
php xx.phpashttpuser. all of them is success... and the output ofg++ -vin php code is similar with its in shell.. – fanzeyi Jan 16 '12 at 11:02gcc -print-search-dirshow about this? Are the outputs the same? – Vyktor Jan 16 '12 at 11:10