使用gzopen函數(shù)打開一個(gè)文件并寫入壓縮后的數(shù)據(jù),然后關(guān)閉文件即可保存壓縮后的數(shù)據(jù)。以下是一個(gè)示例代碼:
// 壓縮數(shù)據(jù)
$data = "Hello, world!";
$compressedData = gzcompress($data);
// 打開文件
$fp = gzopen('compressed_data.gz', 'w');
// 將壓縮后的數(shù)據(jù)寫入文件
gzwrite($fp, $compressedData);
// 關(guān)閉文件
gzclose($fp);
echo "壓縮后的數(shù)據(jù)已保存到 compressed_data.gz 文件中";
在上面的示例中,首先使用gzcompress函數(shù)對(duì)數(shù)據(jù)進(jìn)行壓縮,然后使用gzopen函數(shù)打開一個(gè)文件并寫入壓縮后的數(shù)據(jù),最后使用gzclose函數(shù)關(guān)閉文件。壓縮后的數(shù)據(jù)將保存在名為compressed_data.gz的文件中。