|
fgetssGets line from file pointer 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
string fgetss(resource
$handle , int $length = ?, string $allowable_tags = ?)Identical to fgets, except that fgetss attempts to strip any NUL bytes, 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 fgets. Parameters
Return Values
Returns a string of up to
If an error occurs, returns Examples
Example #1 Reading a PHP file line-by-line
The above example will output something similar to: Welcome! Today is the of . Text outside of the HTML block. Notes
|