php打开本地exe程序,js打开本地exe应用程序,并传递相关参数方法
程序员文章站
2022-05-23 17:00:54
实例如下:
//include_once("inc/auth.inc.php");
include_once("inc/conn.php"...
实例如下:
<? //include_once("inc/auth.inc.php"); include_once("inc/conn.php"); $html_page_title = _("运行"); include_once("inc/header.inc.php"); //路径如下 /* http://127.0.0.1/general/winexe/exe1.php?prog=c:/program files (x86)/tencent/qq/bin/qq.exe&name=qqqq */ //$prog="c:/program files (x86)/tencent/qq/bin/qq.exe"; //$name="aaaaa"; if(strstr($prog,"format")) { message("",_("非法程序")); exit; } $prog=str_replace("/","\\\\",$prog); ?> <script> function win_run() { coolrun.path="<?=$prog?>"; coolrun.runpath(); window.settimeout(' window.close();',3000); } </script> <body class="bodycolor" onload="win_run()"> <br> <div align="center" class="big1"> <h1><b><?=$name?></b><h1> </div> <object classid="clsid:4ab8ac1a-ae97-49ff-a74c-1f3c0cfc9870" id="coolrun" codebase="<?=myoa_js_server?>/static/js/coolrun.cab#version=1,0,0,0"></object> </body> </html>
以上这篇php打开本地exe程序,js打开本地exe应用程序,并传递相关参数方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: php+redis消息队列实现抢购功能
下一篇: SQL分组数据使用实例