com_invoke
Calls a COM component's method [deprecated]
Description
mixedcom_invoke
resourcecom_object
stringfunction_name
mixedfunction_parameters
com_invoke invokes the method
named function_name of the COM
component referenced by com_object.
com_invoke returns &false; on error,
returns the function_name's return
value on success. All the extra parameters
function_parameters are passed to
the method function_name.
Don't use com_invoke(), use OO syntax instead
method($one, $two);
// instead of this:
$val = com_invoke($obj, 'method', $one, $two);
?>
]]>
&reference.com.use-oo-instead;