summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/gzencode_basic1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zlib/tests/gzencode_basic1.phpt')
-rw-r--r--ext/zlib/tests/gzencode_basic1.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/zlib/tests/gzencode_basic1.phpt b/ext/zlib/tests/gzencode_basic1.phpt
index e53dfde2ab..c6040135f0 100644
--- a/ext/zlib/tests/gzencode_basic1.phpt
+++ b/ext/zlib/tests/gzencode_basic1.phpt
@@ -1,5 +1,5 @@
--TEST--
-Test gzencode() function : basic functionality
+Test gzencode() function : basic functionality
--SKIPIF--
<?php
if (!extension_loaded("zlib")) {
@@ -9,7 +9,7 @@ if (!extension_loaded("zlib")) {
--FILE--
<?php
/* Prototype : string gzencode ( string $data [, int $level [, int $encoding_mode ]] )
- * Description: Gzip-compress a string
+ * Description: Gzip-compress a string
* Source code: ext/zlib/zlib.c
* Alias to functions:
*/
@@ -34,7 +34,7 @@ for($i = -1; $i < 10; $i++) {
echo "-- Compression level $i --\n";
$output = gzencode($data, $i);
- // Clear OS byte before encode
+ // Clear OS byte before encode
$output[9] = "\x00";
var_dump(md5($output));
@@ -45,7 +45,7 @@ for($i = -1; $i < 10; $i++) {
echo "-- Compression level $i --\n";
$output = gzencode($smallstring, $i);
- // Clear OS byte before encode
+ // Clear OS byte before encode
$output[9] = "\x00";
var_dump(md5($output));