php-src/ext/com_dotnet
2015-09-24 22:39:59 +03:00
..
tests restricted test to English locale (fails otherwise) 2015-06-26 16:27:45 +02:00
com_com.c Fixed incorrect usage of HASH_OF() macro. Replaced HASH_OF() with more appropriate Z_ARRVAL_P() or Z_OBJPROP_P(). 2015-09-24 22:39:59 +03:00
com_dotnet.c Patch improvement: 2015-03-30 18:53:38 +03:00
com_extension.c Switch position of ce in exception ce variable names 2015-07-03 09:45:03 -05:00
com_handlers.c Fixed bug #69939 (Casting object to bool returns false) 2015-06-26 15:30:03 +02:00
com_iterator.c bump year 2015-01-15 23:27:30 +08:00
com_misc.c bump year 2015-01-15 23:27:30 +08:00
com_olechar.c bump year 2015-01-15 23:27:30 +08:00
com_persist.c bump year 2015-01-15 23:27:30 +08:00
com_saproxy.c bump year 2015-01-15 23:27:30 +08:00
com_typeinfo.c bump year 2015-01-15 23:27:30 +08:00
com_variant.c Fixed incorrect usage of HASH_OF() macro. Replaced HASH_OF() with more appropriate Z_ARRVAL_P() or Z_OBJPROP_P(). 2015-09-24 22:39:59 +03:00
com_wrapper.c zend_read_property() has to provide a holder for return value. 2015-01-22 11:50:42 +03:00
config.w32 opcache, intl, gmp, exif, com, bcmath to use static tsrmls 2014-10-17 15:51:21 +02:00
CREDITS add credits 2003-08-14 20:48:06 +00:00
package.xml Typo 2007-03-14 09:58:14 +00:00
php_com_dotnet_internal.h bump year 2015-01-15 23:27:30 +08:00
php_com_dotnet.h switch to the unified globals accessor where appropriate 2015-07-29 13:26:35 +02:00
README Fixup some constants and error handling. 2004-05-03 15:51:41 +00:00

This is the new php5 COM module.

It is not 100% backwards compatible with PHP 4 ext/com, but you should not miss
the "features" that have not been retained.

This module exposes 3 classes: variant, com and dotnet(*).
com and dotnet classes are descendants of the variant class; the only
difference between the three are their constructors.  Once instantiated, the
module doesn't make a distinction between them.

COM errrors are mapped to exceptions; you should protect your COM code using
the try..catch construct if you want to be able to handle error conditions.

Be warned that due to the way the ZE2 currently works, exceptions are only
"armed" at the time they are detected, but do not "detonate" until the end of
the statement.  So, code like this:

  $obj->foo[43]->bar();

Where the foo[43] access triggers an exception will continue to call the bar()
method on a null object and cause a fatal php error.

Default properties and array access:

$obj = new COM("...");
$obj[1]->foo();

The code above will use the type information for the object to determine its
default property and then access it.  In PHP 4, it was hard-coded to use the
"Items" member, which was wrong.

The default property will also be used by the casting support to determine the
value for the object.

Variants:

This implementation of COM takes a simpler approach than the PHP 4 version;
we only map a few native types to COM and vice-versa, leaving the more complex
things as variants.  This allows greater consistency of data when passing
parameters to and from COM objects (no data will be lost).  In addition, a
large number of the variant API has been mapped to PHP space so that you can
use it for working with the special variant decimal, currency and date time
types.  This could be used as a replacement for the bcmath extension, for
example.

You can use the new object casting hook to for a php-native representation of
a variant object:

$a = new variant(4);
$b = new variant(6);
$c = variant_add($a, $b);
echo $c; // outputs 10 as a string, instead of Object

Sample Script:

<?php
$word = new COM("word.application");
print "Loaded Word, version {$word->Version}\n"; 
$word->Visible = 1; 
$word->Documents->Add(); 
$word->Selection->TypeText("This is a test..."); 
$word->Documents[1]->SaveAs("Useless test.doc"); 
$word->Quit(); 
?>

TODO:

- documentation

* dotnet support requires that you have the mscoree.h header from the .net sdk
  when you build the module.