我有一个 PHP 页面,我想在远程机器上打开一个文件并读取其内容。我必须指定远程机器的 IP 地址。如何在 PHP 中做到这一点?
问问题
6195 次
3 回答
3
echo file_get_contents("http://1.1.1.1/file.txt")
于 2012-06-27T08:17:25.287 回答
1
您可以读取任何文件的内容file_get_contents()
。
文档: http: //php.net/file_get_contents
于 2012-06-27T08:17:10.487 回答
1
您不需要指定远程机器的 ip。你可以使用
file_get_contents('http path to file');
于 2012-06-27T08:18:27.317 回答