我只需要检查我的PHP服务器中是否安装了Sql Loader,或者没有。我需要使用PHP文件/代码完成此操作。
我尝试了什么
This worked in my Command Prompt
C:>sqlldr
Unable to to get the same done using PHP
shell_exec('sqlldr')
答案 0 :(得分:0)
$path = 'C:\sqlldr.exe'; //use correct path to your .exe file. Be careful with slashes
if(file_exists($path))
//do smth;