[PHP]windows php的exec执行bat弹出dos窗口源代码的范例
System()函数的主要功能是在系统权限允许的情况是执行系统命令,
windows系统和Linux系统都可以执行,Windows系统下可执行可执行文件(.exe、.bat等),也可执行cmd命令,
可以用system()、exec()、passthru()
string system ( string command [, int &return_var] )
string exec ( string command [, array &output [, int &return_var]] )
void passthru ( string command [, int &return_var] )
比如你要在用户访问1.php的时候执行服务器上的 c:\a.bat 你可以在1.php里面这么写
<?php
exec("c:\\a.bat");
?>
- <?php
- //最简单的写法
- //注意.bat批处理文件中要记得加一句@echo off,禁止回显不必要的信息.
- $output=`F:/wamp/www/PHPIPTV/data/winClient/test.bat`;
- echo $output;
- //$output是批处理执行后返回的结果.
- ?>
热门文章推荐
- [php]优酷真实视频地址解析算法
- [Dz]discuz手机版支持视频播放的方法
- [PHP]php加密js解密的方法实例
- [php]用PHP打印出前一天的时间格式
- [PHP]mpeg,mp3,avi的ffmpeg的php转换类
- [php]php中3DES加密一个非常有用的3des加密
- [PHP]php.ini修改上传文件的大小限制处理方法
- [php]用过的最好用的php分页类源代码