w3school的PHP教程提炼(二)PHP高级
2010-12-09 07:16:02 来源:WEB开发网核心提示:3.5 逐字符读取文件 fgetc()函数在调用该函数之后,文件指针会移动到下一个字符Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php$file=fopen
3.5 逐字符读取文件 fgetc()函数
在调用该函数之后,文件指针会移动到下一个字符
<?php
$file = fopen("welcome.txt","r") or exit("Unable to open file!");
while(!feof($file)){
echo fgetc($file);
}
fclose($file);
?>
4 文件上传
4.1 创建表单
<?php
$file = fopen("welcome.txt","r") or exit("Unable to open file!");
while(!feof($file)){
echo fgetc($file);
}
fclose($file);
?>
更多精彩
赞助商链接