【问题标题】:Send command to console application from PHP [closed]从 PHP 向控制台应用程序发送命令 [关闭]
【发布时间】:2015-08-11 10:05:20
【问题描述】:

我已经在 Windows 中启动了控制台应用程序。如何从 .php 文件向它发送命令?这是游戏服务器,接受kick:player_id 之类的命令。我想从我的 PHP 代码中自动踢出玩家,我自己做不到...有什么建议吗?

【问题讨论】:

  • 请显示您目前拥有的任何 PHP 代码。

标签: php windows console


【解决方案1】:

使用 exec 或 system 等 PHP 函数。 https://secure.php.net/manual/en/function.system.php


这不是标准协议。

我认为你需要模拟键盘操作。

但是 PHP 不是一个好主意。我用 Python 做这个。

# demo
import win32api
import win32con
win32api.keybd_event(17,0,0,0) #input ctrl
win32api.keybd_event(86,0,0,0) #input v
win32api.keybd_event(86,0,win32con.KEYEVENTF_KEYUP,0)
win32api.keybd_event(17,0,win32con.KEYEVENTF_KEYUP,0)

Rocket 可以使用 telnet 来控制 unturned。 https://github.com/RocketFoundation/Rocket

<?php
error_reporting(-1);

class Telnet {
 var $sock = NULL;

 function telnet($host,$port) {
  $this->sock = fsockopen($host,$port);
  socket_set_timeout($this->sock,2,0);
 }

 function close() {
  if ($this->sock)  fclose($this->sock);
  $this->sock = NULL;
 }

 function write($buffer) {
  $buffer = str_replace(chr(255),chr(255).chr(255),$buffer);
  fwrite($this->sock,$buffer);
 }

 function getc() {
  return fgetc($this->sock); 
 }

 function read_till($what) {
  $buf = '';
  while (1) {
   $IAC = chr(255);

   $DONT = chr(254);
   $DO = chr(253);

   $WONT = chr(252);
   $WILL = chr(251);

   $theNULL = chr(0);

   $c = $this->getc();

   if ($c === false) return $buf;
   if ($c == $theNULL) {
    continue;
   }

   if ($c == "1") {
    continue;
   }

   if ($c != $IAC) {
    $buf .= $c;

    if ($what == (substr($buf,strlen($buf)-strlen($what)))) {
     return $buf;
    }
    else {
     continue;
    }
   }

   $c = $this->getc();

   if ($c == $IAC) {
   $buf .= $c;
   }
   else if (($c == $DO) || ($c == $DONT)) {
    $opt = $this->getc();
    // echo "we wont ".ord($opt)."\n";
    fwrite($this->sock,$IAC.$WONT.$opt);
   }
   elseif (($c == $WILL) || ($c == $WONT)) {
    $opt = $this->getc();
    // echo "we dont ".ord($opt)."\n";
    fwrite($this->sock,$IAC.$DONT.$opt);
   }
   else {
    // echo "where are we? c=".ord($c)."\n";
   }
  }
 }
}

/*
$telnet = new telnet("192.168.0.1",23);
echo $telnet->read_till("login: ");
$telnet->write("kongxx\r\n");
echo $telnet->read_till("password: ");
$telnet->write("KONGXX\r\n");
echo $telnet->read_till(":> ");
$telnet->write("ls\r\n");
echo $telnet->read_till(":> ");
echo $telnet->close();

*/

【讨论】:

  • 它可以将命令传递给现有进程吗?请你写个例子好吗?
  • 这个游戏服务器有API或接口(CLI/GUI)?
  • 这个API没有kick命令。你在哪里输入这个命令?
  • 我在 .exe 文件上有链接,我在其中添加了参数 -nographics 和 -batchmode。之后,服务器以控制台模式启动。在那里我可以输入命令。
猜你喜欢
  • 2012-08-14
  • 2017-12-08
  • 1970-01-01
  • 2011-08-06
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多