--TEST-- Test function gzfile() by substituting argument 1 with string values. --SKIPIF-- --FILE-- "string", 'string SQ' => 'string', 'mixed case string' => "sTrInG", 'heredoc' => $heredoc ); foreach ( $variation_array as $var ) { var_dump(gzfile( $var , $use_include_path ) ); } ?> ===DONE=== --EXPECTF-- Warning: gzfile(string): failed to open stream: No such file or directory in %s on line %d bool(false) Warning: gzfile(string): failed to open stream: No such file or directory in %s on line %d bool(false) Warning: gzfile(sTrInG): failed to open stream: No such file or directory in %s on line %d bool(false) Warning: gzfile(hello world): failed to open stream: No such file or directory in %s on line %d bool(false) ===DONE===