Is this possible from a PHP file

$var1 = 1  
$var2 = 2  
$output = `./a.out $var1 $var2 `

or

$output = exec(./a.out $var1 $var2);

consider a.out to be the C program executable.

Where $var1 and $var2 are passed as command line arguements? If this is not possible, is there any other easier way of passing php variables as input to my C program executable?

Thanks!

link|improve this question

72% accept rate
its really easy to know whether its possible or not, you just gotta jot down those few lines into file and execute it. did you give it a shot? – freethinker May 21 '11 at 5:16
I agree it is very experimental and doable.. The reason i posted it was to know subtleties involved while doing this and other alternatives available if any.. – Maverickgugu May 21 '11 at 5:19
feedback

2 Answers

Yes, that is possible.

Since you are asking for potential alternatives, you could consider passing the arguments as environment variables instead (which might be insignificantly easier to access in your C binary):

exec("VAR1='$var1' VAR2='$var2' ./a.out");
link|improve this answer
feedback

Sure, it would work. The syntax however is little different:

$output = exec("./a.out $var1 $var2");

Php would put the actual values into the string, so a.out would execute with arguments 1 2.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.