php-src/ext/standard/tests/general_functions/getservbyname_variation3.phpt

37 lines
711 B
Plaintext
Raw Normal View History

2009-08-26 17:17:58 +00:00
--TEST--
Test function getservbyname() by substituting argument 1 with emptyUnsetUndefNull values.
--FILE--
<?php
echo "*** Test substituting argument 1 with emptyUnsetUndefNull values ***\n";
$protocol = "tcp";
$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( $var , $protocol ) );
}
?>
--EXPECTF--
*** Test substituting argument 1 with emptyUnsetUndefNull values ***
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)