polygon-website-foss/test/gzip.php

6 lines
160 B
PHP

<?php
header("Content-type: application/octet-stream");
$file = gzopen('gzip.rbxl', 'rb');
while(!gzeof($file)) { echo gzread($file, 8192); }
gzclose($file);
?>