summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/gzfile_variation3.phpt
blob: 5871b34f7873c14e2567fd33b31823b6792295ab (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 gzfile() 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(gzfile( $var ,  $use_include_path ) );
}
?>
===DONE===
--EXPECTF--
Warning: gzfile(): Filename cannot be empty in %s on line %d
bool(false)

Warning: gzfile(): Filename cannot be empty in %s on line %d
bool(false)

Warning: gzfile(): Filename cannot be empty in %s on line %d
bool(false)

Warning: gzfile(): Filename cannot be empty in %s on line %d
bool(false)

Warning: gzfile(): Filename cannot be empty in %s on line %d
bool(false)

Warning: gzfile(): Filename cannot be empty in %s on line %d
bool(false)
===DONE===