美文网首页
下载文件到本地

下载文件到本地

作者: flamez57 | 来源:发表于2020-06-30 10:38 被阅读0次

    function saveImage($path) {

        if(!preg_match('/\/([^\/]+\.[a-z]{3,4})+\?.*?$/i',$path,$matches))

            die('Use image please');

        $image_name = strToLower($matches[1]);

        $img = file_get_contents($path);

        $fp = fopen($image_name,'w');

        fwrite($fp, $img);

        fclose($fp);

        //unlink($image_name);

    }

    saveImage('http://img.v2.shunliandev.com/uploads/20200415/20200415141847617v.png?w=750&h=350');

    相关文章

      网友评论

          本文标题:下载文件到本地

          本文链接:https://www.haomeiwen.com/subject/xhbtqktx.html