Hi there, I have created my own COM object, and in VB, C++ the COM object works fine!
However, in PHP, every COM method I call, PHP feels it has to call it twice, is there a reason for this? and if so, is there a way around this?
my PHP code
$usreg = new COM("USDom.DomainController");
$usreg->Connect();
$usreg->Disconnect();
$usreg->Release();
$usreg = null;