summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/getservbyname_variation10.phpt
blob: db1d47f3ef862087fbdd41c55a2b3096b89cafd4 (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
--TEST--
Test function getservbyname() by substituting argument 2 with emptyUnsetUndefNull values.
--FILE--
<?php


echo "*** Test substituting argument 2 with emptyUnsetUndefNull values ***\n";

$service = "www";


$unset_var = 10;
unset($unset_var);

$variation_array = array(
  'unset var' => @$unset_var,
  'undefined var' => @$undefined_var,
  'empty string DQ' => "",
  'empty string SQ' => '',
  'uppercase NULL' => NULL,
  'lowercase null' => null,
  );


foreach ( $variation_array as $var ) {
  var_dump(getservbyname( $service, $var  ) );
}
?>
--EXPECT--
*** Test substituting argument 2 with emptyUnsetUndefNull values ***
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)