vay sayesinde Columbo için bir çok & Paul Dixon.
Şimdi = ~ c + + thn php değer geri pas çağırmak için php çalıştırabilirsiniz) olabilir
Burada örnek bir cpp'nin sağlamak ve Bunun için php:
A simple program for adding up inputs:
a.cpp (a.exe):
#include<iostream>
#include<cstdlib>
using namespace std;
int main(int argc, char* argv[]) {
int val[2];
for(int i = 1; i < argc; i++) { // retrieve the value from php
val[i-1] = atoi(argv[i]);
}
int total = val[0] + val[1]; // sum up
cout << total; // std::cout will output to php
return 0;
}
sample.php:
<?php
$a = 2;
$b = 3;
$c_output=`a.exe $a $b`; // pass in the two value to the c++ prog
echo "<pre>$c_output</pre>"; //received the sum
echo "Output: " . ($output + 1); //modify the value in php and output
?>
output:
5
Output: 6