Query: gzgetss
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GZGETSS(3) 1 GZGETSS(3) gzgetss - Get line from gz-file pointer and strip HTML tagsSYNOPSISstring gzgetss (resource $zp, int $length, [string $allowable_tags])DESCRIPTIONIdentical to gzgets(3), except that gzgetss(3) attempts to strip any HTML and PHP tags from the text it reads.PARAMETERSo $zp - The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(3). o $length - The length of data to get. o $allowable_tags - You can use this optional parameter to specify tags which should not be stripped.RETURN VALUESThe uncompressed and stripped string, or FALSE on error.EXAMPLESExample #1 gzgetss(3) example <?php $handle = gzopen('somefile.gz', 'r'); while (!gzeof($handle)) { $buffer = gzgetss($handle, 4096); echo $buffer; } gzclose($handle); ?>SEE ALSOgzopen(3), gzgets(3), strip_tags(3). PHP Documentation Group GZGETSS(3)
| Related Man Pages | 
|---|
| readdir(3) - php | 
| fgetcsv(3) - php | 
| bzread(3) - php | 
| fgetc(3) - php | 
| ftell(3) - php | 
| Similar Topics in the Unix Linux Community | 
|---|
| unsing sed to strip html tags - help | 
| include NULLs in line length check | 
| Finding a string inside A Tag | 
| Search and filter between two files | 
| Perl: Question about stripping tags |