Created
March 11, 2013 21:09
-
-
Save kfriend/5137776 to your computer and use it in GitHub Desktop.
Download a list of files from a location and save locally
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Where to save | |
$store = ''; | |
// Files to download | |
$files = array( | |
'file', | |
); | |
foreach ($files as $file) | |
{ | |
$contents = file_get_contents($file); | |
file_put_contents($store); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment