PHP中最简单的方法是:
从外部网址http://test.com/thisfile)检索文件?
如果成功,请删除本地文件/root/xml/test.xml
。
将下载的文件重命名为test.xml
。
将新文件写入/root/xml/
文件夹。
这将是一个私人脚本,因此安全性或错误处理不是重要问题。
答案 0 :(得分:3)
假设配置正确,
$file = file_get_contents('http://test.com/thisfile');
if($file) {
unlink('/root/xml/test.xml');
file_put_contents('/root/xml/test.xml');
}
或类似的东西。
答案 1 :(得分:3)
$contents = file_get_contents( 'http://test.com/testfile' );
if( $contents ) {
$file = '/root/xml/test.xml';
unlink( $file );
file_put_contents( $contents, $file );
}