从打开的 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+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!