fgetss() 函数从打开的文件中返回一行,并过滤掉 HTML 和 PHP 标签。
fgetss() 函数会在到达指定长度或读到文件末尾(EOF)时(以先到者为准),停止返回一个新行。
如果失败该函数返回 FALSE。
fgetss(file,length,tags)
参数 | 描述 |
---|---|
file | 必需。规定要检查的文件。 |
length | 可选。规定要读取的字节数。默认是 1024 字节。 注意:该参数在 PHP 5 之前的版本是必需的。 |
tags | 可选。指定将被删除的标签。 |
<?php
$file = fopen("test.htm","r");
echo fgetss($file);
fclose($file);
?>
上面的代码将输出:
This is a paragraph.
<?php
$file = fopen("test.htm","r");
echo fgetss($file,1024,"<p>,<b>");
fclose($file);
?>
上面的代码将输出:
This is a paragraph.
上面输出的源代码是:
<p><b>This is a paragraph.</b></p>