$data = array(); //The data needs to be compressed and stored in the database
$eventData = addslashes( gzdeflate( json_encode( $data ), 9 ) ); // The compressed data is stored in the database
$logData / /Compressed data stored in the database
$eventData = json_decode( gzinflate( $logData ), true );//Get compressed data and read data from the database