Google App Engine PHP文件权限

时间:2013-05-20 22:16:28

标签: php google-app-engine

App Engine应用程序现在可以使用PHP原始运行时实现。 (见Get started with App Engine for PHP - scalable, secure and reliable on Google Cloud Platform Blog (16 May 2013)

似乎 Google App Engine 上的PHP进程没有足够的权限来创建文件夹。根据他们的documentation,内置流处理程序ftp() is not supported

GAE文件系统是只读的吗?我们有什么可能性?

1 个答案:

答案 0 :(得分:4)

您应该写入Google云端存储,而不是尝试写入本地文件系统。

https://developers.google.com/appengine/docs/php/googlestorage/overview

这可以使用常规文件函数,这是他们的基本示例之一。

$fp = fopen("gs://my_bucket/some_file.txt", "w");
fwrite($fp, "Hello");
fclose($fp);