Quercus(Google App Engine 上的 PHP)is_file is_dir 不工作

发布于 2024-12-09 19:21:42 字数 355 浏览 0 评论 0原文

我有一个在 Google App Engine 上运行的 PHP 应用程序,它能够运行 通过 Quercus 在 GAE 上运行 PHP。但是,我注意到当我的脚本运行 is_dir() 或 is_file() 函数时,我的脚本在 GAE 上会卡住。这些函数在“常规”PHP 服务器上运行得很好。

根据我上面给出的链接,我已经正确配置了我的应用程序,因为其他一切都工作正常。造成这个症结的原因是什么?是GAE配置,还是Quercus不支持这些功能?

谢谢您的宝贵时间。

I have a PHP application running on Google App Engine, who has the ability to run PHP on GAE via Quercus. However, I notice that my scripts choke on GAE when they run an is_dir() or is_file() function. These functions work just fine on a "regular" PHP server.

According to the link I gave above above, I have configured my application correctly, as all else works just fine. What could be the cause of this sticking point? Is it a GAE configuration, or does Quercus not support these functions?

Thank you for your time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兔姬 2024-12-16 19:21:42

本地磁盘限制是 Google App Engine 限制的一部分,请参阅为什么我不能读取该文件?

可以读取作为应用程序的一部分上传的文件,前提是该文件位于以下位置:

  • 战争/WEB-INF
  • 位于与 appengine-web.xml 中的模式匹配的位置(默认情况下包含所有内容)

The local disk limitations are part of the Google App Engine restrictions, see Why can't I read from this file?

It is possible to read from a file which is uploaded as part of your application provided that it is in the following locations:

  • war/WEB-INF
  • in a location matching the pattern in appengine-web.xml (which by default includes everything)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文