projects
/
m6w6
/
ext-http
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
- changelog
[m6w6/ext-http]
/
tests
/
ob_inflatehandler_001.phpt
1
--TEST--
2
ob_inflatehandler
3
--SKIPIF--
4
<?php
5
include 'skip.inc';
6
checkcgi();
7
skipif(!http_support(HTTP_SUPPORT_ENCODINGS), "need zlib");
8
?>
9
--FILE--
10
<?php
11
ob_start('ob_inflatehandler');
12
echo http_deflate("TEST\n");
13
?>
14
--EXPECTF--
15
%sTEST
16