fgestss() 函数从文件指针获取一行并去除 HTML 和 PHP 标签。 fgetss() 函数返回从句柄指向的文件中读取的最大长度为 1 个字节的字符串,其中所有 HTML 和 PHP 代码都被条带化。如果发生错误,则返回 FALSE。
fgetss(file_path,length,tags)
file_pointer - 文件指针必须有效,并且必须指向由 fopen() 成功打开的文件或 fsockopen()(尚未由 fclose() 关闭)。
length - 数据长度
标签 - 您不想删除的标签。
fgetss() 函数返回从句柄指向的文件中读取的最大长度为 1 个字节的字符串,其中所有 HTML 和 PHP 代码都被条带化。如果发生错误,则返回 FALSE。
假设我们有包含以下内容的“new.html”文件。
<p><strong>Asia</strong> is a <em>continent</em>.</p>
<?php $file_pointer= fopen("new.html", "rw"); echo fgetss($file_pointer); fclose($file_pointer); ?>
以下是输出结果。我们没有添加参数以避免剥离HTML标签,因此输出结果如下:
Asia is a continent.
Now, let us see another example wherein we have the same file, but we will add the length and HTML tags parameters to avoid stripping of those tags.
<?php $file_pointer = @fopen("new.html", "r"); if ($file_pointer) { while (!feof($handle)) { $buffer = fgetss($file_pointer, 1024"<p>,<strong>,<em>"); echo $buffer; } fclose($file_pointer); } ?>
Asia is a continent.
以上是PHP中的fgetss()函数的详细内容。更多信息请关注PHP中文网其他相关文章!