1--TEST-- 2Test compress.zlib:// scheme with the file 3--EXTENSIONS-- 4zlib 5--FILE-- 6<?php 7$inputFileName = __DIR__."/004.txt.gz"; 8$srcFile = "compress.zlib://$inputFileName"; 9$contents = file($srcFile); 10var_dump($contents); 11?> 12--EXPECT-- 13array(6) { 14 [0]=> 15 string(36) "When you're taught through feelings 16" 17 [1]=> 18 string(26) "Destiny flying high above 19" 20 [2]=> 21 string(38) "all I know is that you can realize it 22" 23 [3]=> 24 string(18) "Destiny who cares 25" 26 [4]=> 27 string(19) "as it turns around 28" 29 [5]=> 30 string(39) "and I know that it descends down on me 31" 32} 33