SplFileObject::fgetss
(PHP 5 >= 5.1.0, PHP 7)
SplFileObject::fgetss — Gets line from file and strip HTML tags
Diese Funktion ist seit PHP 7.3.0 VERALTET und seit PHP 8.0.0 ENTFERNT. Von der Verwendung dieser Funktion wird dringend abgeraten.
Beschreibung
$allowable_tags
= ?): stringIdentical 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().
Parameter-Liste
-
allowable_tags
-
Optional parameter to specify tags which should not be stripped.
Rückgabewerte
Returns a string containing the next line of the file with HTML and PHP
code stripped, or false
on error.
Beispiele
Beispiel #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();
}
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Welcome! Today is the of . Text outside of the HTML block.
Siehe auch
- fgetss() - Liest eine Zeile von der Position des Dateizeigers und entfernt HTML Tags.
- SplFileObject::fgets() - Gets line from file
- SplFileObject::fgetc() - Gets character from file
- SplFileObject::current() - Retrieve current line of file
- The string.strip_tags filter