Hi Richard,

Am Freitag, den 13.06.2008, 15:38 +0100 schrieb Richard Quadling:
> 
> Out of interest, I tried the following line of userland PHP ...
> 
> php -n -r "Reflection::export(new
> COM('CrystalReports11.ObjectFactory.1'));"
> 
> The error reported is ...
> 
> Catchable fatal error: Argument 1 passed to Reflection::export() must
> implement interface Reflector, instance of com given in Command line
> code on
> line 1

Read the error report and than take a look at the documentation:
http://de.php.net/language.oop5.reflection

This should work:
Reflection::export(
  new ReflectionObject(
    new COM('CrystablReports11.ObjectFactory.1')
  )
);

cu, Lars

Attachment: signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil

Reply via email to