diff --git a/functions/com.xml b/functions/com.xml
index df58bfa34b..edc6ffd659 100644
--- a/functions/com.xml
+++ b/functions/com.xml
@@ -17,40 +17,34 @@
$obj = new COM("server.object")
-
+
Description
The COM class provides a framework to integrate (D)COM components into
your php scripts.
-
- Properties
-
-
-
+
Methods
string COM::COM
- string module name
- string server name
+ string module_name
+ string server_name
int codepage
-
- Description
- COM constructor. Parameters:
+ COM class constructor. Parameters:
- module name
+ module_name
name or class-id of the requested component.
- server name
+ server_name
name of the DCOM server from which the component should be fetched.
@@ -74,29 +68,6 @@
-
-
-
- string COM::AddRef
-
-
-
- Description
-
- Increases the components reference counter.
-
-
-
-
- string COM::Release
-
-
-
- Description
-
- Decreases the components reference counter.
-
-
COM example (1)