0
簡單的問題。我有:用其他服務器下載文件
- VPS
- 本地主機服務器(簡單)
我有文件:sitemap.xml
在服務器1(VPS),我想使用功能前下載sitemap.xml
服務器2。 file_get_contents(ip_vps/sitemap.xml)
。
但我無法下載文件或下載很長。如何通過GOOD配置VPS? PS:對不起,我的英文不好。我嘗試學習。
簡單的問題。我有:用其他服務器下載文件
我有文件:sitemap.xml
在服務器1(VPS),我想使用功能前下載sitemap.xml
服務器2。 file_get_contents(ip_vps/sitemap.xml)
。
但我無法下載文件或下載很長。如何通過GOOD配置VPS? PS:對不起,我的英文不好。我嘗試學習。
嘗試這樣做
file_put_contents( 'server1.xml',的file_get_contents( 'http://othersiteURL.com/sitemap.xml'));
simplexml_load_file('server1.xml');
謝謝。問題出在VPS上,因爲我想用更多的內容下載。第一次下載長,第二次相同和第三次下載正常。 – user2721564
TRy this ..我認爲不要承擔更多的負擔和探索這個功能.. copy('http://www.example1.com/','yourlocalfile.xml'); –