简体   繁体   中英

How to download xml file through in php?

I created xml file in php. This file is successfully saved in my server directory.
Now, I want to download this file only through php, not javascript.

How can I save this file?

Try file_get_contents() and 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.

?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM