+
95
-

php如何下载网络图片或文件?

php

php如何下载网络图片或文件?

网友回复

+
15
-
<?php
function GrabImage($url, $filename) {
    if ($url == ""):return false; endif;

    ob_start();
    readfile($url);
    $img = ob_get_contents();
    o...

点击查看剩余70%

我知道答案,我要回答