所以,我需要知道如何在项目中识别我的test.bat文件,我想做的是这样的:
<?php
$v1 = "test one"; //this is domain
$v2 = "test two";
$bat_file = "folder/test.bat ".escapeshellarg($v1)." ".escapeshellarg($v2);
$output = null;
system($bat_file, $output);
?>
bat文件:
@echo off
set test1=%1
echo example one %test1%
set test2=%2
echo example two %test2%
我需要设置一个目录来找到我的test.bat文件,我该怎么办?我知道是否可以删除“ / folder”,但我需要将目录放入.bat文件怎么办?我应该怎么做?