How can I call a C function from php (with argmts)?
In fact, I just need to call a C function which is in a library. I tried this :
system('rundll3 2.exe library.dll,fun ction 20 ');
I can call my function but I can't pass 20 as an argument to my C function.
I also checked php extensions but clearly that is not what I need
Many thanks in advance for your answers
In fact, I just need to call a C function which is in a library. I tried this :
system('rundll3 2.exe library.dll,fun ction 20 ');
I can call my function but I can't pass 20 as an argument to my C function.
I also checked php extensions but clearly that is not what I need
Many thanks in advance for your answers
Comment