CakeFest 2024: The Official CakePHP Conference

SplFileObject::fgetss

(PHP 5 >= 5.1.0, PHP 7)

SplFileObject::fgetssGets line from file and strip HTML tags

Uyarı

Bu işlevin kullanımı PHP 7.3.0 itibariyle ÖNERİLMEMEKTE olup PHP 8.0.0'da tamamen KALDIRILMIŞTIR. Bu işleve kesinlikle güvenilmemelidir.

Açıklama

public SplFileObject::fgetss(string $allowable_tags = ?): string

Identical to SplFileObject::fgets(), except that SplFileObject::fgetss() attempts to strip any HTML and PHP tags from the text it reads. The function retains the parsing state from call to call, and as such is not equivalent to calling strip_tags() on the return value of SplFileObject::fgets().

Bağımsız Değişkenler

allowable_tags

Optional parameter to specify tags which should not be stripped.

Dönen Değerler

Returns a string containing the next line of the file with HTML and PHP code stripped, or false on error.

Örnekler

Örnek 1 SplFileObject::fgetss() example

<?php
$str
= <<<EOD
<html><body>
<p>Welcome! Today is the <?php echo(date('jS')); ?> of <?= date('F'); ?>.</p>
</body></html>
Text outside of the HTML block.
EOD;
file_put_contents("sample.php", $str);

$file = new SplFileObject("sample.php");
while (!
$file->eof()) {
echo
$file->fgetss();
}
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

Welcome! Today is the  of .

Text outside of the HTML block.

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top