如何通过PHP下载xml文件?

时间:2011-03-01 12:55:48

标签: php xml fbjs

我在php中创建了xml文件。此文件已成功保存在我的服务器目录中 现在,我只想通过php下载此文件,而不是javascript。

如何保存此文件?

1 个答案:

答案 0 :(得分:6)

尝试file_get_contents()file_put_contents()

<?PHP

$xml = file_get_contents("http://yoursite.com/yourxml.xml"); // your file is in the string "$xml" now.
file_put_contents("/path/to/file/yourxml.xml", $xml); // now your xml file is saved.

?>