COM 함수 목록
PHP Manual

com_invoke

(PHP 4)

com_invokeCalls a COM component's method [deprecated]

Description

mixed com_invoke ( resource $com_object , string $function_name [, mixed $function_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 .

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);
?>

Note: 이 함수는 PHP 5에 존재하지 않습니다; 프로퍼티에 접근하거나 메쏘드를 호출하려면, 일반적인 OO 문법을 사용해야 합니다.


COM 함수 목록
PHP Manual