检索文件并将其写入系统

时间:2009-12-02 19:01:46

标签: php file file-io

PHP中最简单的方法是:

  1. 从外部网址http://test.com/thisfile)检索文件?

  2. 如果成功,请删除本地文件/root/xml/test.xml

  3. 将下载的文件重命名为test.xml

  4. 将新文件写入/root/xml/文件夹。

  5. 这将是一个私人脚本,因此安全性或错误处理不是重要问题。

2 个答案:

答案 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 ); 
}