gpt4 book ai didi

php - 在 PHP 中启动一个 Windows 进程并获取它的 PID?

转载 作者:可可西里 更新时间:2023-11-01 13:29:24 25 4
gpt4 key购买 nike

我似乎无法正常工作。

所以我正在尝试为我的游戏编写一个脚本,该脚本连接到服务器,传递一些游戏名称/类型/玩家/等参数。然后服务器脚本根据需要设置游戏服务器的新实例,运行服务器的新实例,找到它正在运行的端口,并将所有信息发送回游戏。

我已经了解了脚本需要执行服务器游戏 exe 的部分,并获取它的 PID(这样我就可以获取它使用的端口等)。

服务器脚本是一个PHP脚本,就是执行服务器的新实例。 (PHP 似乎是一个不错的选择,并且在我的知识范围内)。


脚本必须能够完成执行,同时保持游戏服务器在后台运行。

能够同时运行多个游戏服务器是必要的。


我试过使用 proc_open 但它给出了错误的进程 PID,这使得它毫无用处。 (虽然,它确实正确执行了程序)

<?php

$startDir = "C:/Torque/My Projects/Grim/game";
$runExe = "$startDir/Grimwood.exe";
$envars = " -dedicated -mission \"core/levels/Empty Terrain.mis\"";

$runPath = $runExe . $envars;

chdir($startDir);

$descriptorspec = array(
0 => array("pipe", "r"), // stdin is a pipe that the child will read from
1 => array("pipe", "w"), // stdout is a pipe that the child will write to
);

$prog = proc_open($runPath, $descriptorspec, $pipes, $startDir, NULL);

sleep(4);

if (is_resource($prog))
{
$stats = proc_get_status($prog);
$pid = $stats['pid'];

$task = shell_exec("tasklist /fi \"PID eq $pid\"");

echo("\nProcess: \n$task"); // echos cmd.exe, not process ran
}

?>

它打印的 PID 属于它执行它的控制台窗口,而不是它实际执行的程序。


接下来,我尝试使用 MS 脚本宿主 WScript.Shell 及其exec/run 方法。

<?php

$startDir = "C:/Torque/My Projects/Grim/game";
$runExe = "$startDir/Grimwood.exe";
$envars = " -dedicated -mission \"core/levels/Empty Terrain.mis\"";

$runPath = $runExe . $envars;

chdir($startDir);

try
{
$WshShell = new COM("WScript.Shell");

// gets right process ID
// but process doesn't start properly with params
$oExec = $WshShell->exec($runPath);
echo("PID: " . $oExec->ProcessId);

sleep(4);

// executes properly
// but doesn't return PID
$oExec = $WshShell->run($runPath);
echo("PID: " . $oExec->ProcessId);

}
catch (Exception $e)
{
// never gets hit
echo("Failed to execute");
}

?>

运行 exec 命令,它给出了正确的 PID,但是程序没有正常启动(只显示一个空白的终端窗口,什么都不做)。

运行 run 命令,它会正确启动程序(在终端窗口中显示它应该显示的所有文本),但该命令不会返回 PID。


如有任何帮助,我们将不胜感激。我不确定我在使用 WScript.Shell->exec 命令时做错了什么,因为它没有正确执行,因此我们将不胜感激。

如果可能的话,我想使用 proc_open 方法,因为如果我们想将任何服务器内容移到 *nix 上,它会更跨平台一些。

感谢您的宝贵时间,我希望一些聪明的头脑能为我指明正确的方向。


PHP 版本:5.4.3

开发机:带有 SP1 的 Windows 7 Ultimate

服务器机器:Windows Server 2008 R2

最佳答案

我成功了。我使用 proc_open 执行,它返回游戏服务器运行的 PPID(cmd.exe 可执行文件)。

因为 start/b cmd.exe 一旦执行程序就会退出,唯一应该有 PPID 的是游戏服务器,因此其余的查找 PID 相对很简单。

这也适用于同时创建多个实例,以及多个实例已在运行的情况。

这是使用 proc_open 获取 PID 的结束脚本,如果其他人想知道这个线程并且可能碰巧需要它:

<?php

$startDir = "C:/Torque/My Projects/Grim/game";
$runExe = "$startDir/Grimwood.exe";
$envars = " -dedicated -mission \"core/levels/Empty Terrain.mis\"";

$runPath = $runExe . $envars;

chdir($startDir);

$descriptorspec = array (
0 => array("pipe", "r"),
1 => array("pipe", "w"),
);

if ( is_resource( $prog = proc_open("start /b " . $runPath, $descriptorspec, $pipes, $startDir, NULL) ) )
{
$ppid = proc_get_status($prog)['pid'];
}
else
{
echo("Failed to execute!");
exit();
}

$output = array_filter(explode(" ", shell_exec("wmic process get parentprocessid,processid | find \"$ppid\"")));
array_pop($output);
$pid = end($output);

echo("\nProcess ID: $pid ; Parent's Process ID: $ppid\n");

// returns right process
$task = shell_exec("tasklist /fi \"PID eq $pid\"");
echo("\n\nProcess: \n$task\n\n");

// returns no process found
$task = shell_exec("tasklist /fi \"PID eq $ppid\"");
echo("\n\nParent Process: \n$task\n\n");

?>

关于php - 在 PHP 中启动一个 Windows 进程并获取它的 PID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13289595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com