summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/gzseek_variation3.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zlib/tests/gzseek_variation3.phpt')
-rw-r--r--ext/zlib/tests/gzseek_variation3.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/zlib/tests/gzseek_variation3.phpt b/ext/zlib/tests/gzseek_variation3.phpt
index dee7c1302a..02dc7ac825 100644
--- a/ext/zlib/tests/gzseek_variation3.phpt
+++ b/ext/zlib/tests/gzseek_variation3.phpt
@@ -1,15 +1,15 @@
--TEST--
Test function gzseek() by calling it with SEEK_CUR when reading
--SKIPIF--
-<?php
+<?php
if (!extension_loaded("zlib")) {
- print "skip - ZLIB extension not loaded";
+ print "skip - ZLIB extension not loaded";
}
?>
--FILE--
<?php
$f = dirname(__FILE__)."/004.txt.gz";
-$h = gzopen($f, 'r');
+$h = gzopen($f, 'r');
echo "move to the 50th byte\n";
var_dump(gzseek( $h, 50, SEEK_CUR ) );