I have bought a device, which comes with the SDK, it is a DLL file and I need to use it in my PHP application, but I am unable, since the DLL file does not contain the dllregisterserver() function, so I cannot register it in Windows nor access it. Probably it can be done and I don't know how, let's see if you can help me.
I am using the COM class to call DLL like this:
try {
$util = new COM('UHFReader09.Function/ClassName');
} catch (Exception $e) {
echo $e->getMessage() . "\n";
echo 'exception initialising com object... terminating...';
}
Where i put 'Function/ClassName' really i don´t know what i should type... Because i only know the DLL file name, and the Functions inside name.
Thanks <3!