Ketika saya mengkompilasi program C / C ++ dengan popen
di php
... saya mendapat kesalahan ini:
g++: error trying to exec 'cc1plus': execvp: No such file or directory
tetapi jika saya menjalankan kode php di shell .. berfungsi dengan baik ..
di Arch Linux ..
Kode PHP:
<?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;
?>
Terima kasih