There is a link to download and save the file, do not tell me how? First Kurl, and then fwrite?

1 answer 1

$ch = curl_init($url); $str = $singer.'_'.$name; $str = mb_strtolower($str, 'UTF-8'); $str = $id.'_'.$str; $fp = fopen('../music/'.$str.'.mp3', 'wb'); curl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); fclose($fp);