Depends whether it's a COM DLL or not.
If it isn't, COM isn't going to help you.
You would then probably have to write (in C) a wrapper which sits between PHP and the native DLL you want to call methods of. You can then open that intermediate DLL with dl() and then call any functions it exposes directly from PHP
Mark