PHP fgetss() 函數(shù)
PHP fgetss() 函數(shù)

定義和用法
fgetss() 函數(shù)從打開的文件中返回一行,并過濾掉 HTML 和 PHP 標(biāo)簽。
fgetss() 函數(shù)會在到達(dá)指定長度或讀到文件末尾(EOF)時(以先到者為準(zhǔn)),停止返回一個新行。
如果失敗該函數(shù)返回 FALSE。
語法
fgetss(file,length,tags)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的文件。 |
length | 可選。規(guī)定要讀取的字節(jié)數(shù)。默認(rèn)是 1024 字節(jié)。 注意:該參數(shù)在 PHP 5 之前的版本是必需的。 |
tags | 可選。指定哪些標(biāo)記不被去掉。 |
實例
實例 1
test.html 代碼內(nèi)容:
<p><b>This is a paragraph.</b></p>
PHP 代碼:
<?php $file = fopen("test.html","r"); echo fgetss($file); fclose($file); ?>
上面的代碼將輸出:
This is a paragraph.
實例 2
<?php $file = fopen("test.html","r"); echo fgetss($file,1024,"<p>,<b>"); fclose($file); ?>
上面的代碼將輸出:
This is a paragraph.
上面輸出的源代碼是:
<p><b>This is a paragraph.</b></p>

相關(guān)文章
- PHP 數(shù)據(jù)類型
- PHP 運(yùn)算符
- PHP Cookie
- PHP array_column() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP ksort() 函數(shù)
- PHP list() 函數(shù)
- PHP reset() 函數(shù)
- PHP usort() 函數(shù)