php手册中文版在线阅读,gzdecode - [ php中文手册 ] - 在线原生手册 - php中文网

[#3]

anonymous at dekho-ji dot com [2013-05-16 11:31:35]

To decode / uncompress the received HTTP POST data in PHP code, request data coming from Java / Android application via HTTP POST GZIP / DEFLATE compressed format

1) Data sent from Java Android app to PHP using DeflaterOutputStream java class and received in PHP as shown below

echo gzinflate( substr($HTTP_RAW_POST_DATA,2,-4) ) . PHP_EOL  . PHP_EOL;

2) Data sent from Java Android app to PHP using GZIPOutputStream java class and received in PHP code as shown below

echo gzinflate( substr($HTTP_RAW_POST_DATA,10,-8) ) . PHP_EOL  . PHP_EOL;

From Java Android side (API level 10+), data being sent in DEFLATE compressed format

String body = "Lorem ipsum shizzle ma nizle";

URL url = new URL("http://www.url.com/postthisdata.php");

URLConnection conn = url.openConnection();

conn.setDoOutput(true);

conn.setRequestProperty("Content-encoding", "deflate");

conn.setRequestProperty("Content-type", "application/octet-stream");

DeflaterOutputStream dos = new DeflaterOutputStream(

conn.getOutputStream());

dos.write(body.getBytes());

dos.flush();

dos.close();

BufferedReader in = new BufferedReader(new InputStreamReader(

conn.getInputStream()));

String decodedString = "";

while ((decodedString = in.readLine()) != null) {

Log.e("dump",decodedString);

}

in.close();

On PHP side (v 5.3.1), code for decompressing this DEFLATE data will be

echo substr($HTTP_RAW_POST_DATA,2,-4);

From Java Android side (API level 10+), data being sent in GZIP compressed format

String body1 = "Lorem ipsum shizzle ma nizle";

URL url1 = new URL("http://www.url.com/postthisdata.php");

URLConnection conn1 = url1.openConnection();

conn1.setDoOutput(true);

conn1.setRequestProperty("Content-encoding", "gzip");

conn1.setRequestProperty("Content-type", "application/octet-stream");

GZIPOutputStream dos1 = new GZIPOutputStream(conn1.getOutputStream());

dos1.write(body1.getBytes());

dos1.flush();

dos1.close();

BufferedReader in1 = new BufferedReader(new InputStreamReader(

conn1.getInputStream()));

String decodedString1 = "";

while ((decodedString1 = in1.readLine()) != null) {

Log.e("dump",decodedString1);

}

in1.close();

On PHP side (v 5.3.1), code for decompressing this GZIP data will be

echo substr($HTTP_RAW_POST_DATA,10,-8);

Useful PHP code for printing out compressed data using all available formats.

$data = "Lorem ipsum shizzle ma nizle";

echo "\n\n\n";

for($i=-1;$i<=9;$i++)

echo chunk_split(strtoupper(bin2hex(gzcompress($data,$i))),2," ") . PHP_EOL  . PHP_EOL;

echo "\n\n\n";

for($i=-1;$i<=9;$i++)

echo chunk_split(strtoupper(bin2hex(gzdeflate($data,$i))),2," ") . PHP_EOL  . PHP_EOL;

echo "\n\n\n";

for($i=-1;$i<=9;$i++)

echo chunk_split(strtoupper(bin2hex(gzencode($data,$i,FORCE_GZIP))),2," ") . PHP_EOL  . PHP_EOL;

echo "\n\n\n";

for($i=-1;$i<=9;$i++)

echo chunk_split(strtoupper(bin2hex(gzencode($data,$i,FORCE_DEFLATE))),2," ") . PHP_EOL  . PHP_EOL;

echo "\n\n\n";

Hope this helps. Please ThumbsUp if this saved you a lot of effort and time.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值