Well the title says most of it.. When I use reflection with anyother object/class/function it works as intended. However when I try to use it with an overloaded object like COM, it crashes apache. It is really phpt2.dll that crashes and then in turn brings apache down..
Here is the code that I am using.. (simple com and simple reflection)
As I said the over loaded object returned from COM seems to crash apache.PHP Code:<?php
$com = new COM('powerpoint.application') or die ('Unable to instantiate PowerPoint');
Reflection::export(new ReflectionObject($com));
$com->quit();
?>
Any suggestions as to why this is happening or a possible work around would be great..
Thanks,
Tom



Reply With Quote
Bookmarks