图片上传到 google 存储桶和云存储

image upload to google bucket ay cloud storage

我正在测试以下代码,看看是否可以将图像上传到 google 的云存储中的存储桶。

这是我的 app.yaml 文件:

application: test-795  
version: 1
runtime: php
api_version: 1

handlers:

# Serve images as static resources.
- url: /(.+\.(gif|png|jpg))$
  static_files: 
  upload: .+\.(gif|png|jpg)$
  application_readable: true

- url: /(.+\.php).*
  script:   

- url: /upload
  script: fileimage.php 

这是我的 fileimage.php 文件,用于将图像文件上传到存储桶:

<?php

 require_once 'google/appengine/api/cloud_storage/CloudStorageTools.php';
 use google\appengine\api\cloud_storage\CloudStorageTools;

 $options = [ 'gs_bucket_name' => 'test-795.appspot.com' ];
 $upload_url = CloudStorageTools::createUploadUrl('/upload', $options);

   if(isset($_POST['do-upload']) AND $_POST['do-upload'] === "yes"){

   $yesupload = $_POST['do-upload'];
   preg_match("/yes/", "".$yesupload."");

   $filename = $_FILES['testupload']['name'];

   $gs_name = $_FILES['testupload']['tmp_name'];
   move_uploaded_file($gs_name, 'gs://test-795.appspot.com/'.$filename.'');
?>

<div class="contentArea">
<?php
echo "<p class=\"SomeSpaceDude\">Hey file is uploaded, Yes! ".$yesupload." !</p>";
echo "<p class=\"SomeSpaceDude\">This is the file name: ".$filename."</p>";
}

echo"</div>";
?>

<form class="SomeSpaceDude" action="<?php echo $upload_url?>" enctype="multipart/form-data" method="post">
<p>Files to upload: </p> <br>
 <input type="hidden" name="do-upload" value="yes">
 <input class="SomeSpaceDude topcoat-button" type="file" name="testupload" >
 <input class="SomeSpaceDude topcoat-button" type="submit" value="Upload">
</form>
</div>

当我使用 localhost:8080 运行文件时,我收到消息 嘿,文件已上传,是的!是的! 我的网址变成了这样:localhost:8080/_ah/upload/ahVkZXZ-Y... 在 google 存储中检查我的存储桶,其名称为 test-795,但未上传任何内容。

我也部署了它,当我在按下上传按钮后对其进行测试时,我得到一个空白页面和网址 link 看起来像:test-795.appspot.com/_ah/upload/AMmfu6 ... 当然,再次检查我的水桶里面什么也没有。 知道我在这里错过了什么吗?

当您 运行 在开发服务器中时,文件不会上传到真正的云存储服务,只有本地模拟。

在生产服务器上,检查日志以查看您的上传可能发生了什么。

上面的代码工作正常......我终于发现问题是,我应该在上面的代码中到处使用test-795,而不是test-795.appspot.com