PHP 8.5.0 Alpha 2 available for testing

Voting

: max(zero, nine)?
(Example: nine)

The Note You're Voting On

przemekryciuk at gmail dot com
16 years ago
The simplest way for gzip compression is:
<?php
if(!ob_start("ob_gzhandler")) ob_start();
?>
ob_start("ob_gzhandler") returns FALSE if browser doesn't support gzip, so then is called normal ob_start();

<< Back to user notes page

To Top