dll files?
Moderator: General Moderators
dll files?
I was just wondering if it's possible to run a dll file through php?
It depends entirely in which context you are "sending" a command to said file.
If it is an executable, then you could use shell_exec()
However, as you have asked about a dll (Dynamic Link Library) file, that will not work.
dll are extensions to applications, and thus the parent application must be called which will then have ties to the dll.
In other words, you can't do with PHP what you are asking.
If it is an executable, then you could use shell_exec()
However, as you have asked about a dll (Dynamic Link Library) file, that will not work.
dll are extensions to applications, and thus the parent application must be called which will then have ties to the dll.
In other words, you can't do with PHP what you are asking.