PHP fgetc() 函数
PHP fgetc() 函数
完整的 PHP Filesystem 参考手册定义和用法
fgetc() 函数从打开的文件中返回一个单一的字符。
语法
fgetc(file)
参数 | 描述 |
---|---|
file | 必需。规定要检查的文件。 |
提示和注释
注释:该函数处理大文件非常缓慢,所以它不用于处理大文件。如果您需要从一个大文件依次读取一个字符,请使用 fgets() 依次读取一行数据,然后使用 fgetc() 依次处理行数据。
实例 1
<?php
$file = fopen("test2.txt","r");
echo fgetc($file);
fclose($file);
?>
$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);
?>
$file = fopen("test2.txt","r");
while (! feof ($file))
{
echo fgetc($file);
}
fclose($file);
?>
上面的代码将输出:
Hello, this is a test file.
完整的 PHP Filesystem 参考手册
相关文章
- PHP 变量
- PHP echo 和 print 语句
- PHP If Else 语句
- PHP 超级全局变量
- PHP 函数
- PHP 魔术常量
- PHP $_GET 变量
- PHP Session
- PHP array_count_values() 函数
- PHP array_key_last() 函数
- PHP array_map() 函数
- PHP array_reduce() 函数
- PHP array_sum() 函数
- PHP array_uintersect() 函数
- PHP pos() 函数
- PHP reset() 函数
- PHP shuffle() 函数
- PHP 5 Directory 函数
- PHP Filter 函数
- PHP 5 MySQLi 函数