我用 curl 检索 Blob :
$ch = curl_init("http://MYURLFORRETRIEVEANIMAGE");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, $username . ":" . $password);
$img = curl_exec($ch);
curl_close($ch);
$img
我的 BLOB 也是如此。
现在,我想在我的 ftp 上上传这个 blob。我不知道我应该做什么??
谢谢 :)