Delicious Bookmark this on Delicious Share on Facebook SlashdotSlashdot It! Digg! Digg



PHP : Function Reference : COM and .Net (Windows) : com_print_typeinfo

com_print_typeinfo

Print out a PHP class definition for a dispatchable interface (PHP 4 >= 4.2.0, PHP 5)
bool com_print_typeinfo ( object comobject [, string dispinterface [, bool wantsink]] )

The purpose of this function is to help generate a skeleton class for use as an event sink. You may also use it to generate a dump of any COM object, provided that it supports enough of the introspection interfaces, and that you know the name of the interface you want to display.

comobject should be either an instance of a COM object, or be the name of a typelibrary (which will be resolved according to the rules set out in com_load_typelib()). dispinterface is the name of an IDispatch descendant interface that you want to display. If wantsink is TRUE, the corresponding sink interface will be displayed instead.

See also com_event_sink(), com_load_typelib().

Code Examples / Notes » com_print_typeinfo

richard lynch

In my particular version of PHP, the second and third arguments are not, in fact, optional.
Passing in '' for both, however, yielded a bucketful of information.
YMMV


csaba

com_print_typeinfo is really useful if you're trying to figure out what properties and methods you have access to.  For example, I might do:
<?php
   $oExplorer = new COM("Shell.Application");
   com_print_typeinfo($oExplorer);
?>
The first line shows me the class of the object (what VBScript calls 'typename'), in my case IShellDispatch4.  It's frequently the case that if you plunk that in as the second argument to com_print_typeinfo, you get way more methods/properties coming back.  Thus:
<?php
   $oExplorer = new COM("Shell.Application");
   com_print_typeinfo($oExplorer, "IShellDispatch4");
?>
Furthermore, you might get additional functions listed if you try lower number suffixes (or not).  At any rate, it would be useful for PHP to have a typename function like VBScript does.  For example, if you iterate through the Windows of $oExplorer you get both IE and Explorer windows and typename is the easy way to differentiate between them.  Here's what I'm using:
<?php
   function typeName($objCOM) {
   if (empty($objCOM)) return "no COM object";
   if (gettype($objCOM)!="object") return "not a COM object";
   ob_start();
   com_print_typeinfo($objCOM);
   $typeInfo = ob_get_contents();
   ob_end_clean();
   $pattern = "/^\\s*class (.*) \\{/";
   if (!($matchCnt = preg_match($pattern, $typeInfo, $aMatch))) return "Not found";
   return $aMatch[1];
}
?>
Csaba Gabor from Vienna


Change Language


Follow Navioo On Twitter
COM
DOTNET
VARIANT
com_addref
com_create_guid
com_event_sink
com_get_active_object
com_get
com_invoke
com_isenum
com_load_typelib
com_load
com_message_pump
com_print_typeinfo
com_propget
com_propput
com_propset
com_release
com_set
variant_abs
variant_add
variant_and
variant_cast
variant_cat
variant_cmp
variant_date_from_timestamp
variant_date_to_timestamp
variant_div
variant_eqv
variant_fix
variant_get_type
variant_idiv
variant_imp
variant_int
variant_mod
variant_mul
variant_neg
variant_not
variant_or
variant_pow
variant_round
variant_set_type
variant_set
variant_sub
variant_xor
eXTReMe Tracker