PHP 8.5.0 Alpha 4 available for testing

Voting

: min(five, one)?
(Example: nine)

The Note You're Voting On

plasma
16 years ago
This worked unstable for me under high load (50+ files per second):

<?php
$gz
= gzopen ( $file, 'w9' );
gzwrite ( $gz, $content );
gzclose ( $gz );
?>

The following works fine:

<?php
$f
= fopen ( $file, 'w' );
fwrite ( $f, gzcompress ( $content, 9 ) );
fclose ( $f );
?>

<< Back to user notes page

To Top