downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

zlib_get_coding_type> <zlib_decode
[edit] Last updated: Fri, 17 May 2013

view this page in

zlib_encode

(PHP 5 >= 5.4.0)

zlib_encodeComprime datos con la codificación especificada

Descripción

string zlib_encode ( string $data , string $encoding [, string $level = -1 ] )

Comprime datos con la codificación especificada.

Advertencia

Esta función no está documentada actualmente, solamente se encuentra disponible la lista de parámetros.

Parámetros

data

encoding

level

Valores devueltos

Ver también

  • zlib_decode() - Descomprime datos codificados en craw/gzip/zlib


add a note add a note User Contributed Notes zlib_encode - [1 notes]
up
1
soywiz at gmail dot com
8 months ago
RFC 1950 - zlib
RFC 1951 - raw deflate
RFC 1952 - gzip

The $encoding parameter referers to the window bits. So you can encode in several formats:

<?php

// RFC 1950 - zlib
$compressedData = zlib_encode($uncompressedData, 15);

// RFC 1951 - raw deflate
$compressedData = zlib_encode($uncompressedData, -15);

// RFC 1952 - gzip
$compressedData = zlib_encode($uncompressedData, 31);

?>

 
show source | credits | sitemap | contact | advertising | mirror sites