0

简单的问题。我有:

  1. 虚拟主机
  2. 本地主机服务器(简单)

我有文件:sitemap.xml在服务器 1 (vps) 上,我想sitemap.xml使用函数 ex 在服务器 2 中下载。file_get_contents(ip_vps/sitemap.xml).

但是我无法下载文件或下载时间很长。GOOD如何配置VPS??

PS:对不起我的英语。我试着学习。

4

1 回答 1

0

尝试这样做

file_put_contents('server1.xml',file_get_contents(' http://othersiteURL.com/sitemap.xml '));

simplexml_load_file('server1.xml');

于 2013-10-15T09:12:53.130 回答