如何从远程服务器读取文件?

时间:2015-03-30 11:09:09

标签: php server

我目前正在为Minecraft服务器编写一个控制面板,现在想知道,我如何阅读位于远程服务器上的配置文件?

感谢。

3 个答案:

答案 0 :(得分:2)

使用fopen()从远程服务器读取:

fopen('http://www.google.com/', 'r');

有关详细信息,请查看PHP documentation。 从远程服务器读取文件的其他一些方法是file_get_contents()cURL

答案 1 :(得分:0)

我现在正在使用一个类(http://php.net/manual/de/function.ssh2-sftp.php),它实际上正在做我想做的一切

答案 2 :(得分:-1)

使用file_get_contents

$file = file_get_contents("path_to_file");
echo "<pre>";
print_r($file);