php://输入返回空字符串
以下代码最近开始返回空字符串。它可以在其他系统上运行,因此看起来不是代码本身的问题。我确实删除了所有服务器端代码,但它仍然做同样的事情。我也尝试使用 file_get_contents 无济于事,只是在黑暗中拍摄。
$fileStream = fopen('php://input', 'rb');
$fileData = '';
while ($buffer = fread($fileStream, 4096)) {
$fileData .= $buffer;
}
服务器: Zend Server 5.1.0 (Apache 2.2.3)
语言: PHP 5.3.5
前端: Plupload(JavaScript 插件)
The following code recently started returning empty strings. It works on other systems, so it doesn't appear to be a problem with the code itself. I literally eliminated all of the server-side code, and it still did the same thing. I also tried using file_get_contents to no avail, just kind of shooting in the dark.
$fileStream = fopen('php://input', 'rb');
$fileData = '';
while ($buffer = fread($fileStream, 4096)) {
$fileData .= $buffer;
}
Server: Zend Server 5.1.0 (Apache 2.2.3)
Language: PHP 5.3.5
Front-End: Plupload (JavaScript plugin)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢您的帮助!
Thanks for your help!