首页 > 编程知识 正文

php中函数无返回值的意思,check cable connection什么意思

时间:2023-05-03 12:34:03 阅读:261532 作者:167

fopen() 或 fsockopen() 成功打开(但还没有被 fclose() 关闭)的文件。

$file = fopen("test.txt", "r");

//输出文本中所有的行,直到文件结束为止。

while(! feof($file))

{

echo fgets($file). "
";

}

fclose($file);

?>

if(file_exists($pmr_config["datasetfile"])){

$tmp_counter = 0;

$hd = fopen($pmr_config["datasetfile"], "r");

if($hd !== FALSE){

while (!feof($hd)) {

$buffer = fgets($hd);

if($tmp_counter >= $seq){

$result[] = $buffer;

}

$tmp_counter ;

if($tmp_counter >=$seq $size){

break;

}

}

}else{

echo "warning:open file {$pmr_config["datasetfile"]} failed!PHP_EOL";

}

}else{

echo "warning:file {$pmr_config["datasetfile"]} does not exsits!PHP_EOL";

}

其中当读取行数包括文件结尾的时候,$result数组中总会比期望的内容多出来一个元素:

(boolean)false

按说,如果读取到最后一行,feof函数会返回TRUE,然后while循环就退出了,为什么不是呢?

1

while (!feof($hd)) {

事情原来是这样子的:

// if file can not be read or doesn't exist fopen function returns FALSE

$file = @fopen("no_such_file", "r");

// FALSE from fopen will issue warning and result in infinite loop here

while (!feof($file)) {

}

fclose($file);

?>

feof() is, in fact, reliable.  However, you have to use it carefully in conjunction with fgets().  A common (but incorrect) approach is to try something like this:

$fp = fopen("myfile.txt", "r");

while (!feof($fp)) {

$current_line = fgets($fp);

// do stuff to the current line here

}

fclose($fp);

?>

提示和注释

提示:feof() 函数对遍历长度未知的数据很有用。

注意:如果服务器没有关闭由 fsockopen() 所打开的连接,feof() 会一直等待直到超时而返回 TRUE。默认的超时限制是 60 秒,可以使用 stream_set_timeout() 来改变这个值。

注意:如果传递的文件指针无效可能会陷入无限循环中,因为 EOF 不会返回 TRUE。

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。