Name Date Size #Lines LOC

..05-Dec-2019-

tests/H05-Dec-2019-

CREDITSH A D05-Dec-201925 32

READMEH A D05-Dec-20192.4 KiB7252

com_com.cH A D05-Dec-201923.5 KiB845606

com_dotnet.cH A D05-Dec-201910.4 KiB350257

com_extension.cH A D05-Dec-201914.4 KiB521379

com_handlers.cH A D05-Dec-201917.1 KiB684507

com_iterator.cH A D05-Dec-20196.3 KiB250176

com_misc.cH A D05-Dec-20194.4 KiB14592

com_olechar.cH A D05-Dec-20193.3 KiB10864

com_persist.cH A D05-Dec-201918.4 KiB778571

com_saproxy.cH A D05-Dec-201915 KiB586412

com_typeinfo.cH A D05-Dec-201917 KiB608450

com_variant.cH A D05-Dec-201926.7 KiB1,081801

com_wrapper.cH A D05-Dec-201916.7 KiB650474

config.w32H A D05-Dec-2019487 1411

package.xmlH A D05-Dec-20191.5 KiB5348

php_com_dotnet.hH A D05-Dec-20192.4 KiB7335

php_com_dotnet_internal.hH A D05-Dec-20197 KiB183121

README

1This is the new php5 COM module.
2
3It is not 100% backwards compatible with PHP 4 ext/com, but you should not miss
4the "features" that have not been retained.
5
6This module exposes 3 classes: variant, com and dotnet(*).
7com and dotnet classes are descendants of the variant class; the only
8difference between the three are their constructors.  Once instantiated, the
9module doesn't make a distinction between them.
10
11COM errrors are mapped to exceptions; you should protect your COM code using
12the try..catch construct if you want to be able to handle error conditions.
13
14Be warned that due to the way the ZE2 currently works, exceptions are only
15"armed" at the time they are detected, but do not "detonate" until the end of
16the statement.  So, code like this:
17
18  $obj->foo[43]->bar();
19
20Where the foo[43] access triggers an exception will continue to call the bar()
21method on a null object and cause a fatal php error.
22
23Default properties and array access:
24
25$obj = new COM("...");
26$obj[1]->foo();
27
28The code above will use the type information for the object to determine its
29default property and then access it.  In PHP 4, it was hard-coded to use the
30"Items" member, which was wrong.
31
32The default property will also be used by the casting support to determine the
33value for the object.
34
35Variants:
36
37This implementation of COM takes a simpler approach than the PHP 4 version;
38we only map a few native types to COM and vice-versa, leaving the more complex
39things as variants.  This allows greater consistency of data when passing
40parameters to and from COM objects (no data will be lost).  In addition, a
41large number of the variant API has been mapped to PHP space so that you can
42use it for working with the special variant decimal, currency and date time
43types.  This could be used as a replacement for the bcmath extension, for
44example.
45
46You can use the new object casting hook to for a php-native representation of
47a variant object:
48
49$a = new variant(4);
50$b = new variant(6);
51$c = variant_add($a, $b);
52echo $c; // outputs 10 as a string, instead of Object
53
54Sample Script:
55
56<?php
57$word = new COM("word.application");
58print "Loaded Word, version {$word->Version}\n";
59$word->Visible = 1;
60$word->Documents->Add();
61$word->Selection->TypeText("This is a test...");
62$word->Documents[1]->SaveAs("Useless test.doc");
63$word->Quit();
64?>
65
66TODO:
67
68- documentation
69
70* dotnet support requires that you have the mscoree.h header from the .net sdk
71  when you build the module.
72