Поддержка сжатия PHP ZLIB не будет работать - PullRequest
0 голосов
/ 17 января 2012

Если я настраиваю в своем php.ini поддержку сжатия zlib, похоже, не будет работать.

zlib.output_compression = On

; http://php.net/zlib.output-compression-level
zlib.output_compression_level = -1

; You cannot specify additional output handlers if zlib.output_compression
; is activated here. This setting does the same as output_handler but in
; a different order.
; http://php.net/zlib.output-handler
;zlib.output_handler =

Я использую php-5.3.9

Я тестировал следующий php-код, должен сказать, что я не профессионал, но, похоже, он не работает.

<code><?php

$filename = tempnam('/tmp', 'zlibtest') . '.gz';
echo "<html>\n<head></head>\n<body>\n<pre>\n";
$s = "Only a test, test, test, test, test, test, test, test!\n";

// open file for writing with maximum compression
$zp = gzopen($filename, "w9");

// write string to file
gzwrite($zp, $s);

// close file
gzclose($zp);

// open file for reading
$zp = gzopen($filename, "r");

// read 3 char
echo gzread($zp, 3);

// output until end of the file and close it.
gzpassthru($zp);
gzclose($zp);

echo "\n";

// open file and print content (the 2nd time).
if (readgzfile($filename) != strlen($s)) {
        echo "Error with zlib functions!";
}
unlink($filename);
echo "
\ п \ п \ п "; ?>

нет вывода

1 Ответ

0 голосов
/ 17 января 2012

Обработчик вывода zlib не имеет ничего общего с файловыми функциями gz.

Итак, что-то не так, включите error_reporting.

В противном случае показанный код работает нормально.Поведение «без вывода» не воспроизводится.

...