Hi there,

I'm sure that I'll find some very professional PHP programmers here that have dealt with similar problems before:

I'd like to use a COM object within my PHP script, but the program uses IO parameters and I don't know how to return the value from a passed parameter ... this is the function call:

$returned = $obj->OnlyMethod(1, $var1);

and the second parameter - in my case "$var1" - returns a string value ... but it doesn't, it's empty after the COM call.

Is there any way to read the returned parameters from a function call with PHP?

Thank you in advance!

    Write a Reply...