欢迎访问服务器技术网-www.fuwuqijishu.com

PHP fgetc() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 74次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP fgetc() 函数


完整的 PHP Filesystem 参考手册


定义和用法

fgetc() 函数从打开的文件中返回一个单一的字符。

语法

fgetc(file)

参数 描述
file 必需。规定要检查的文件。


提示和注释

注释:该函数处理大文件非常缓慢,所以它不用于处理大文件。如果您需要从一个大文件依次读取一个字符,请使用 fgets() 依次读取一行数据,然后使用 fgetc() 依次处理行数据。


实例 1

<?php
$file = fopen(“test2.txt”,”r”);
echo fgetc($file);
fclose($file);
?>

上面的代码将输出:

H


实例 2

按字符读取文件:

<?php
$file = fopen(“test2.txt”,”r”);

while (! feof ($file))
{
echo fgetc($file);
}

fclose($file);
?>

上面的代码将输出:

Hello, this is a test file.


完整的 PHP Filesystem 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2215.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900