是否可以将图像从网址上传到谷歌云?

时间:2016-08-22 10:14:05

标签: php google-cloud-storage

我想使用PHP库将图像从Image URL上传到Google云端存储

3 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

检查出来:

您可以使用这个简单的PHP脚本将文件从一台服务器移动到另一台服务器。

https://shellcreeper.com/move-files-server-to-server-using-simple-php/

答案 2 :(得分:0)

是的,您可以将file_get_contents()用于图像URL

$file = file_get_contents($imageURL);

$object = $bucket->upload
(
    $file,

    [
        'name' => 'image-name.png',
        'predefinedAcl' => 'publicRead'
    ]
);