PHP Salt


A little dash of PHP... my collection of php functions

Version: 2.33.2
Last Build: December 29, 2023 20:28pm (PST)

Main Menu

Home

Get PHP Salt


The Functions

array
db
file
graph
html
mail
math
misc
mobile
script
string
system
time
web
psOBStart()
Start output buffering with compression


Description:

A simple way to start output compression.
This also checks to see if the browser accepts the encoding



Usage:

psObStart(clean,gzip);
clean = set to true to clean the output buffer, default is false;
gzip = set to true to gzip output if browser accepts, default is false;



Example:

	psObStart();




Code:

function psOBStart($cl = false, $gz = false)
{
global $_SERVER;

if ($cl == true) { ob_clean(); }

if ( (substr_count(strtolower($_SERVER['HTTP_ACCEPT_ENCODING']),"gzip") > 0) && ($gz == true) )
{
ob_start("ob_gzhandler"); // now gzip the output
}
else
{
ob_start();
}
}


Changlelog:



See Also

And a shot out to:

PHP - php.net
Fedora Server - getfedora.com
Shameless ads to pay for site