gzgetc
(PHP 4, PHP 5, PHP 7, PHP 8)
gzgetc — gz ファイルへのポインタから文字を得る
例
例1 gzgetc() の例
<?php
$gz = gzopen('somefile.gz', 'r');
while (!gzeof($gz)) {
echo gzgetc($gz);
}
gzclose($gz);
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google