1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - 网站技术 - php - 正文

君子好学,自强不息!

实例说明:

<?php
$file = fopen("test.txt","r");
echo fgets($file);
fclose($file);
?>

标签含义:

fgets:函数从打开的文件中返回一行。

fgets:函数会在到达指定长度( length - 1 )、碰到换行符、读到文件末尾(EOF)时(以先到者为准),停止返回一个新行。

如果失败该函数返回 FALSE。

源代码运行结果如下:

Hello, this is a test file.

实例说明 2: 

按行读取文件

<?php
$file = fopen("test.txt","r");
 
while(! feof($file))
{
    echo fgets($file). "<br />";
}
 
fclose($file);
?>

源代码运行结果如下:

Hello, this is a test file.
There are three lines here.
This is the last line.


本文来源:1818IP

本文地址:https://www.1818ip.com/post/333.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。