如何运行执行.bat文件的php脚本?

时间:2017-05-23 10:50:50

标签: php batch-file

我在运行以下php脚本时遇到错误。我的php脚本有很少的代码来执行位于我本地服务器上的.bat文件。

PHP文件代码: -

<?php
    system("cmd /c C:\Users\my_computer_name\Desktop\sample.bat");
?>

sample.bat文件代码: -

@echo off
title This is your first batch script!
echo Welcome to batch scripting!
start calc.exe

当我从.bat文件代码中删除start calc.exe时,它可以正常工作。

先谢谢你......

0 个答案:

没有答案