fwrite php 的问题
我在 php 中使用 fwrite 时遇到问题。以下代码在我的本地计算机上运行,但在服务器中出现错误。
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);
if(!$fp) {
echo 'Error: '.$errno.', '.$errstr;
} else {
fwrite($fp, 'kool');
}
fsockopen 没有错误。它通过并且没有给出错误。 fwrite 无法写入。它失败并且不返回任何错误仅返回 false
I am getting problem while using fwrite in php. the following code works in my local computer but gives error in server.
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);
if(!$fp) {
echo 'Error: '.$errno.', '.$errstr;
} else {
fwrite($fp, 'kool');
}
There is no error with fsockopen. it passes and gives no error. fwrite is not being able to write. it fails and returns no error only false
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 Apache/Nobody 用户访问远程文件的权限问题,该文件无权修改/读取/写入/执行。
您还应该打印错误消息以进行调试
This is a permissions issue with the Apache/Nobody user accessing a remote file that it doesn't have permission to modify/read/write/execute.
You should also print the error message(s) for debugging
如果您位于共享主机上,则您的服务器很可能不允许端口 80 上的出站连接。通常只允许入站连接。
If you're on a shared host, most likely your server does not allow outbound connections on port 80. Usually only inbound connections are allowed.