COM
(no version information, might be only in CVS)
COM -- COM class
Synopsis
$obj = new COM("server.object")
Description
The COM class provides a framework to integrate (D)COM components
into your PHP scripts.
Methods
string COM::COM ( string module_name [, string server_name
[, int codepage]])
COM class constructor. Parameters:
module_name
name or class-id of the requested component.
server_name
name of the DCOM server from which the component should
be fetched. If NULL, localhost is assumed. To allow DCOM
com.allow_dcom has to be set to TRUE in php.ini.
codepage
specifies the codepage that is used to convert php-strings
to unicode-strings and vice versa. Possible values are CP_ACP,
CP_MACCP, CP_OEMCP, CP_SYMBOL, CP_THREAD_ACP, CP_UTF7 and
CP_UTF8.
|