PHP 从URL下载文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 从URL下载文件相关的知识,希望对你有一定的参考价值。

<?
// DOWNLOAD REMOTE FILE
// this is a-lot more complicated than it looks
// $url is the url of the file, must have fopen wrappers enabled
// $dir is the directory to save the file to relative to the current working directory
// file is saved with the same file name from its source
function getfile($url, $dir){
file_put_contents($dir.substr($url,strrpos($url,'/'),strlen($url)), file_get_contents($url));
}
?>

以上是关于PHP 从URL下载文件的主要内容,如果未能解决你的问题,请参考以下文章

如何从 PHP 发送 GET 请求?

从 php 网站解码附件 url

PHP:从服务器下载时保持相同的文件名

如何从 url 下载 m3u 文件以及帐户 iptv 的所有详细信息?

如何从命令行下载站点中的文件,用php编写文件

从 URL 获取文件内容?