500 服务器错误 file_get_contents
我在同一台服务器上有两个项目。我想要在我的网站上有一些数据表格,所以我使用 file_get_contents;大多数时候,我都会收到 500 内部错误,
我检查我的 url fopen 是否使用 phpinfo() 。
I have two project on same server. I want some data form on my website so I am using file_get_contents; most of the time I get the 500 internal error
I checked that my url fopen is on using phpinfo()
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用默认设置时,
file_get_content()
无法在代理后面工作,或者无法处理超时。通常建议读取本地文件。因此请改用
cURL
。下面的函数可以用来完成这项工作:
让我知道您使用的是 Linux 还是 Windows,以便为您提供
cURL
安装提示With default settings,
file_get_content()
doesn't work behind a proxy or it cannot handle timeouts. It's normally recommended to read local files.Therefore use
cURL
instead.Below function could be used for the job:
Let me know whether your're using Linux or Windows to give you
cURL
installation tips