> 백엔드 개발 > PHP 튜토리얼 > fputs()出现错误怎么处理

fputs()出现错误怎么处理

WBOY
풀어 주다: 2016-06-13 13:23:02
원래의
2242명이 탐색했습니다.

fputs()出现异常怎么办?
页面提示:

Assembly code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->Warning: fputs() expects parameter 1 to be resource, boolean given in x.php on line 100
Warning: feof() expects parameter 1 to be resource, boolean given in x.php on line 101
Warning: fgets() expects parameter 1 to be resource, boolean given in x.php on line 102
로그인 후 복사


提示的时候就是这三行不停的循环输出,大概有几十上百行吧,页面卡死,我直接关掉浏览器

也不是每次都如此,大部分都是正常的,只是偶尔碰到连接的时候会出现这样的错误异常

x.php文件:
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->            $data = "";
            $text = "xawasdf";
            $server = "abc.com";
            $fp = fsockopen($server, 43, $errNo, $errStr, 10);
            fputs($fp, $text. "\r\n"); //100行
            while (!feof($fp)) { //101行
                $data .= fgets($fp, 128); //102行
            }
            fclose($fp);
로그인 후 복사



请问这几行代码有没有修改的可能?

------解决方案--------------------
$fp = fsockopen($server, 43, $errNo, $errStr, 10);
失败
应加上排错代码
------解决方案--------------------
fsockopen根本就没有打开abc.com
------解决方案--------------------
fsockopen() returns a file pointer which may be used together with the other file functions (such as fgets(), fgetss(), fwrite(), fclose(), and feof()). If the call fails, it will return FALSE


这么写 = =


$data = "";
$text = "xawasdf";
$server = "abc.com";
$fp = fsockopen($server, 43, $errNo, $errStr, 10);
if($fp)
{
fputs($fp, $text. "\r\n"); //100行
while (!feof($fp)) { //101行
$data .= fgets($fp, 128); //102行
}
fclose($fp);
}
------解决方案--------------------
你fputs参数传成了空句柄,原因是fopen失败造成返回内容(fputs的参数)异常
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿