Skip to content

Instantly share code, notes, and snippets.

View roshanbh's full-sized avatar

Roshan Bhattarai roshanbh

View GitHub Profile
@roshanbh
roshanbh / download-file-from-http.php
Last active December 7, 2023 07:31
Download remote files (on http url ) using curl and PHP
<?php
//$file - should contain full url
// $newFileName - full physical path directory with file name
function getFile($file, $newFileName)
{
$err_msg = '';
echo "<br>Attempting message download for $file<br>";
$out = fopen($newFileName, 'wb');
if ($out == FALSE){
print "File not opened<br>";