我在php中创建了xml文件。此文件已成功保存在我的服务器目录中 现在,我只想通过php下载此文件,而不是javascript。
如何保存此文件?
答案 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.
?>