php fgetss函数介绍
fgetss — 从文件指针中读取一行并过滤掉HTML标签
语法:
string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] )
和 fgets() 相同,只除了 fgetss() 尝试从读取的文本中去掉任何 HTML 和 PHP 标记。
参数:
handle 文件指针必须是有效的,必须指向由 fopen() 或 fsockopen() 成功打开的文件(并还未由 fclose() 关闭)。
length 取回该长度的数据。
allowable_tags 可以用可选的第三个参数指定哪些标记不被去掉。
返回值:
从 handle 指向的文件中大读取 length - 1 个字节的字符,并过滤了所有的 HTML 和 PHP 代码。 错误发生时返回 FALSE。
php fgetss函数实例:
1.fgetss读取文件并过滤掉HTML标签:
$fh = fopen("data.txt", "r");
while (!feof($fh)) :
print fgetss($fh, 2048);
endwhile;
fclose($fh);
?>
2.fgetss读取文件并过滤掉除
以外的所有标签:
$fh = fopen("data.txt", "r");
$allowable = "
";
/* http://www.manongjc.com/article/1345.html */
while (!feof($fh)) :
print fgetss($fh, 2048, $allowable);
endwhile;
fclose($fh);
?>