PHP 8.4.24 Released!

Voting

: max(one, two)?
(Example: nine)

The Note You're Voting On

Nathan
14 years ago
Careful - in some cases, when setting zlib.output_compression to "On" via ini_set, PHP won't send the Content-type header and browsers will garble the output. Set it to the desired buffer size instead, which sends the correct header:

<?php
ini_set("zlib.output_compression", 4096);
?>

<< Back to user notes page

To Top