(PHP 4)
com_invoke — Calls a COM component's method [deprecated]
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
.
Example #1 Don't use com_invoke(), use OO syntax instead
<?php
// do this
$val = $obj->method($one, $two);
// instead of this:
$val = com_invoke($obj, 'method', $one, $two);
?>
Notă: Această funcție nu există în PHP 5; în loc, ar trebui să utilizați sintaxa OO care este mai obișnuită și mai naturală pentru a accesa proprietățile, sau pentru a apela metodele.