0
I have a project in php with Laravel and I need to use some functions contained in a dll, I tried to use the COM(Component Object Model) class native to PHP, but the Laravel from as a class not found, as I can use this class that is native to php in Laravel ?
For conversation starters, the class you require is registered?
– Genos
Which code is used and which is giving error???
– novic
You are registered yes, "{310DBDAC-85FF-4008-82A8-E22A09F9460B}". And the error happens when constructing the COM class.
– Drealler
Try adding the following line in php.ini: Extension=php_com_dotnet.dll and after that restart the service.
– Diego Schmidt