i want to make a file downloader like wget using php. how can i make this downloader which will download file to my local machine. i have been made this download using file_get_contents() function. This is my code
$raw = file_get_contents($_url);
file_put_contents($_dir, $raw);
But i have seen so many solutions in which they are used curl. but i wan't familiar in curl so i have using file_get_contents() function. is there any other functions which are easy and works more better than file_get_contents().