|
SplFileObject::fgetssGets line from file and strip HTML tags Warning
This function has been DEPRECATED as of PHP 7.3.0, and REMOVED as of PHP 8.0.0. Relying on this function is highly discouraged. Description
public string SplFileObject::fgetss(string
$allowable_tags = ?)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. Parameters
Return Values
Returns a string containing the next line of the file with HTML and PHP
code stripped, or Examples
Example #1 SplFileObject::fgetss example
The above example will output something similar to: Welcome! Today is the of . Text outside of the HTML block. See Also
|