|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-06-16 13:37 UTC] RQuadling at GMail dot com
[2009-05-10 13:03 UTC] bjori@php.net
[2009-05-11 13:09 UTC] RQuadling at GMail dot com
[2009-05-11 13:10 UTC] RQuadling at GMail dot com
[2009-07-01 18:47 UTC] kalle@php.net
[2009-07-02 11:05 UTC] RQuadling at GMail dot com
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 19:00:01 2025 UTC |
Description: ------------ Hi. I'm trying to use PHP to find out about the COM interface of Crystal Reports XI. I can use ... php -r "ReflectionClass::export('COM');" which shows the empty 'COM' class extending the 'variant' class. But if I try and use ... php -r "ReflectionObject::export(New COM('CrystalReports11.ObjectFactory.1'));" I get a crash and a request to send a report to Microsoft. Reproduce code: --------------- <?php $o_CR = New COM('CrystalReports11.ObjectFactory.1'); ReflectionObject::export($o_CR); Expected result: ---------------- A dump of the properties/methods provided by the Crystal Reports XI Object Factory. Actual result: -------------- A crash and a Dr. Watson crash.