@echo off
@start C:\Users\wangxiaosheng\Desktop\SP_Flash_Tool_exe_Windows_v5.1628.00.000\flash_tool.exe
备注(@start后面放的是.exe文件的位置)
@exit
写好之后保存为.Bat
运行即可。
bat文件中是可以直接执行exe的,如果不在当前目录,请加完整路径。有参数的命令和普通执行exe是一样的,如
batch.exe
-a
c:\windows\system32\netstat.exe
-an
如果路径中有空格,必须用引号引起来,如
"c:\program
files\aa\aa.exe
-b"
在尝试调用之前,至少你需要了解一定的知识才可以。
你的PHP环境是在Linux服务器还是Windows服务器上?如果是Linux服务器,那么是不支持exe程序运行的。
你的程序需要放在php文件能访问的目录中。当然,你必须能够访问PHP服务器才可以。如果只是客户端,那是没用的。PHP不能访问客户端的程序。
system或者exec都可以执行文件。不过没有尝试Windows下访问某个特定的程序。
下面是一个例子。使用exec执行‘whoami’程序。
<?php
// outputs the username that owns the running php/httpd
process
// (on a system with the "whoami" executable in the
path)
echo exec('whoami')
?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)