当我尝试使用示例代码时:
$fp = fopen("gs://my_bucket/some_file.txt", "w");
fwrite($fp, "Hello");
fclose($fp);
我收到此错误:
警告:fopen():无法找到包装器“gs” - 您在配置 PHP 时是否忘记启用它?
更新
从命令行切换到运行应用程序服务器使原来的错误消失了,但我现在得到了这个错误:
'google\appengine\runtime\RPCFailedError' with message 'Remote implementation for urlfetch.Fetch failed'
有谁知道我该如何解决?