Last active
June 30, 2021 22:14
-
-
Save musamamasood/9adc8692b0f5923977e61e67516b6ebf to your computer and use it in GitHub Desktop.
Transfer files to server with publicly accessible zip file.
This file contains hidden or 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 | |
/** | |
* Transfer Files Server to Server using PHP Copy and PHP ZipArchive | |
* @link https://glowLogix.com | |
*/ | |
/* Source File URL */ | |
$remote_file_url = 'http://example.com/filename.zip'; | |
/* New file name and path for this file */ | |
$local_file = 'file.zip'; | |
/* Copy the file from source url to server */ | |
$copy = copy( $remote_file_url, $local_file ); | |
/* Add notice for success/failure */ | |
if( !$copy ) { | |
echo "Doh! Failed to copy $local_file\n"; | |
} | |
else{ | |
echo "WOOT! Success to copy $local_file...\n"; | |
} | |
$zip = new ZipArchive; | |
$res = $zip->open('file.zip'); | |
if ($res === TRUE) { | |
$path = getcwd() . "/backup/"; //getcwd will get the path of file | |
$zip->extractTo($path); | |
$zip->close(); | |
echo "<br>Woot! File has been Extracted at: $path"; | |
} else { | |
echo '<br>doh!'; | |
} |
Hi,
Please update the gist with my fork. Thank you! π
Okay
Thank you so much! It means a lot. π
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Please update the gist with my fork. Thank you! π