|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2006-02-07 13:03 UTC] rrichards@php.net
  [2006-02-07 13:12 UTC] john dot carter at royal-london dot co dot uk
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 09:00:01 2025 UTC | 
Description: ------------ Code raises follwing COM exception (tested with >1 COM object). PHP Fatal error: Uncaught exception 'com_exception' with message 'Error [0x8002000e] Invalid number of parameters. This was fine in PHP 5.0.5. Reproduce code: --------------- <?php $o1 = new StdClass(); if ($o1) { echo 'this is OK'; } $o2 = new COM("WinNT://Domain"); if ($o2) { echo 'exception before it gets here'; } ?>