/
proc
/
self
/
root
/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
standard
/
tests
/
math
/
File Upload :
llllll
Current File: //proc/self/root/usr/local/lsws/phpbuild/php-8.0.7/ext/standard/tests/math/bindec_variation1.phpt
--TEST-- Test bindec() function : usage variations - different data types as $binary_string arg --SKIPIF-- <?php if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only"); ?> --FILE-- <?php echo "*** Testing bindec() : usage variations ***\n"; //get an unset variable $unset_var = 10; unset ($unset_var); // heredoc string $heredoc = <<<EOT abc xyz EOT; // get a resource variable $fp = fopen(__FILE__, "r"); $inputs = array( // int data /*1*/ 0, 1, 12345, -2345, // float data /*5*/ 10.5, -10.5, 12.3456789000e10, 12.3456789000E-10, .5, // null data /*10*/ NULL, null, // boolean data /*12*/ true, false, TRUE, FALSE, // empty data /*16*/ "", '', array(), // string data /*19*/ "abcxyz", 'abcxyz', $heredoc, // undefined data /*22*/ @$undefined_var, // unset data /*23*/ @$unset_var, // resource variable /*24*/ $fp ); // loop through each element of $inputs to check the behaviour of bindec() $iterator = 1; foreach($inputs as $input) { echo "\n-- Iteration $iterator --\n"; try { var_dump(bindec($input)); } catch (TypeError $e) { echo $e->getMessage(), "\n"; } $iterator++; }; fclose($fp); ?> --EXPECTF-- *** Testing bindec() : usage variations *** -- Iteration 1 -- int(0) -- Iteration 2 -- int(1) -- Iteration 3 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(1) -- Iteration 4 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(0) -- Iteration 5 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(2) -- Iteration 6 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(2) -- Iteration 7 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(8) -- Iteration 8 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(1) -- Iteration 9 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(0) -- Iteration 10 -- int(0) -- Iteration 11 -- int(0) -- Iteration 12 -- int(1) -- Iteration 13 -- int(0) -- Iteration 14 -- int(1) -- Iteration 15 -- int(0) -- Iteration 16 -- int(0) -- Iteration 17 -- int(0) -- Iteration 18 -- bindec(): Argument #1 ($binary_string) must be of type string, array given -- Iteration 19 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(0) -- Iteration 20 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(0) -- Iteration 21 -- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on line %d int(0) -- Iteration 22 -- int(0) -- Iteration 23 -- int(0) -- Iteration 24 -- bindec(): Argument #1 ($binary_string) must be of type string, resource given
Copyright ©2k19 -
Hexid
|
Tex7ure