blob: 9b8c142781a6c3e1a117cbb5bc892e9bf2573d27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
--TEST--
Test function readgzfile() by substituting argument 1 with emptyUnsetUndefNull values.
--SKIPIF--
<?php
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');
?>
--FILE--
<?php
$use_include_path = false;
$unset_var = 10;
unset($unset_var);
$variation = array(
'unset var' => @$unset_var,
'undefined var' => @$undefined_var,
'empty string DQ' => "",
'empty string SQ' => '',
'uppercase NULL' => NULL,
'lowercase null' => null,
);
foreach ( $variation as $var ) {
var_dump(readgzfile( $var , $use_include_path ) );
}
?>
===DONE===
--EXPECTF--
Warning: readgzfile(): Filename cannot be empty in %s on line %d
bool(false)
Warning: readgzfile(): Filename cannot be empty in %s on line %d
bool(false)
Warning: readgzfile(): Filename cannot be empty in %s on line %d
bool(false)
Warning: readgzfile(): Filename cannot be empty in %s on line %d
bool(false)
Warning: readgzfile(): Filename cannot be empty in %s on line %d
bool(false)
Warning: readgzfile(): Filename cannot be empty in %s on line %d
bool(false)
===DONE===
|