1--TEST-- 2Test compress.zlib:// scheme with the unlink function 3--EXTENSIONS-- 4zlib 5--FILE-- 6<?php 7$inputFileName = __DIR__."/004.txt.gz"; 8$srcFile = "compress.zlib://$inputFileName"; 9stat($srcFile); 10lstat($srcFile); 11?> 12--EXPECTF-- 13Warning: stat(): stat failed for compress.zlib://%s/004.txt.gz in %s on line %d 14 15Warning: lstat(): Lstat failed for compress.zlib://%s/004.txt.gz in %s on line %d 16