我在运行以下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
时,它可以正常工作。
先谢谢你......