使用PHP执行cmd prompt命令

时间:2015-04-24 13:53:01

标签: php cmd

我只需要检查我的PHP服务器中是否安装了Sql Loader,或者没有。我需要使用PHP文件/代码完成此操作。

我尝试了什么

This worked in my Command Prompt
C:>sqlldr 

Unable to to get the same done using PHP
shell_exec('sqlldr')

1 个答案:

答案 0 :(得分:0)

$path = 'C:\sqlldr.exe'; //use correct path to your .exe file. Be careful with slashes
if(file_exists($path))
  //do smth;