2

我在屏幕上运行我的世界服务器(screen -X mc java -jar minecraft_server.jar)。有没有办法把这个内容打印到网页上?我在想这将是类似的东西

<?php
$console = exec(console.sh)
echo $console;
header("refresh: 5";);
?>

但是,这不会打印任何内容。我认为这与每个用户的屏幕有关,有没有办法让 php 运行它?或者无论如何将屏幕输出到文件并且仍然能够附加到屏幕?

万分感谢!

编辑:下面的答案效果很好,但我建议http://phpshell.sourceforge.net。您可以登录终端并显示控制台以及聊天。但是,这是交互式的,并且仅适用于管理员。

4

1 回答 1

3

这些中的任何一个都应该起作用。

<?php
$logs = "PATH_TO_SERVER_LOGS/server.log";
$fh = fopen($logs, 'r');
$theData = fread($fh, filesize($logs));
fclose($fh);
echo $theData;
header("refresh: 5");
?>

<?php
//Replace ./server.log with the path to your server logs and make sure apache has the proper //permissions to read the file.
$file = file_get_contents('./server.log', true);
echo $file;
header("refresh: 5");
?>
于 2013-08-03T23:49:00.310 回答