2019-12-10 |

fgetc()

fgetc() 函数用于 逐字 读取文件数据,直到文件结束。

语法:

string fgetc( resource handle )

例子:

<?php
$fh = @fopen("test.txt","r") or die("打开 test.txt 文件出错!");
if($fh){
    while(!feof($fh)) {
        echo fgetc($fh);
    }
}
fclose($fh);
?>

0

流程控制

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论