What's the simplest way for me, in PHP, to:

  1. Retrieve a file from an external URL (http://test.com/thisfile)

  2. If successful, delete local file /root/xml/test.xml

  3. Rename downloaded file to test.xml

  4. Write new file to /root/xml/ folder

This will be a private script, so security or error handling are not important concerns.

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted
$contents = file_get_contents( 'http://test.com/testfile' );
if( $contents ) {
     $file = '/root/xml/test.xml';
     unlink( $file );
     file_put_contents( $contents, $file ); 
}
link|improve this answer
feedback

Assuming correct configuration,

$file = file_get_contents('http://test.com/thisfile');
if($file) {
    unlink('/root/xml/test.xml');
    file_put_contents('/root/xml/test.xml');
}

Or something along those lines.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.