1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/zlib/tests/gzopen_basic.phpt
Gina Peter Banyard 5bd18e3fdc ext/zlib: Refactor tests (#18887)
- Use INI sections
- Use CGI sections
- Move data into a subfolder
- Remove ZPP tests
- Fix various bugs within tests
- Simplify some


Found while working on #18879
2025-06-21 18:03:50 +01:00

40 lines
914 B
PHP

--TEST--
Test gzopen() function : basic functionality
--EXTENSIONS--
zlib
--FILE--
<?php
echo "*** Testing gzopen() : basic functionality ***\n";
// Initialise all required variables
$filename = __DIR__."/data/test.txt.gz";
$mode = 'r';
$use_include_path = false;
// Calling gzopen() with all possible arguments
$h = gzopen($filename, $mode, $use_include_path);
gzpassthru($h);
gzclose($h);
// Calling gzopen() with mandatory arguments
$h = gzopen($filename, $mode);
gzpassthru($h);
gzclose($h);
?>
--EXPECT--
*** Testing gzopen() : basic functionality ***
When you're taught through feelings
Destiny flying high above
all I know is that you can realize it
Destiny who cares
as it turns around
and I know that it descends down on me
When you're taught through feelings
Destiny flying high above
all I know is that you can realize it
Destiny who cares
as it turns around
and I know that it descends down on me