目录

PHP fgetss() 函数

❮ PHP 文件系统参考

示例

从打开的 HTML 文件中读取一行(去除标签):

<?php
$file = fopen("test.htm","r");
echo fgetss($file);
fclose($file);
?>
运行示例 »

定义和用法

fgetss() 函数从打开的文件中返回一行 - 去除 HTML 和 PHP 标签。

笔记:fgetss() 函数从 PHP 7.3 起已弃用。

语法

fgetss( file, length, tags)

参数值

Parameter Description
file Required. Specifies the open file to return a line from
length Optional. Specifies the number of bytes to read. Reading stops when length-1 bytes have been reached, or a when a new line occurs, or on EOF. Note: This parameter is required in versions prior to PHP 5
tags Optional. Specifies which tags that will not be removed


技术细节

返回值: 成功时从文件中读取单行,EOF 或错误时为 FALSE
PHP 版本: 4.0+

❮ PHP 文件系统参考