Searched refs:decbin (Results 1 – 15 of 15) sorted by relevance
/PHP-8.1/ext/standard/tests/math/ |
H A D | decbin_variation1.phpt | 2 Test decbin() function : usage variations - different data types as $num arg 11 echo "*** Testing decbin() : usage variations ***\n"; 36 // loop through each element of $inputs to check the behaviour of decbin() 41 var_dump(decbin($input)); 49 *** Testing decbin() : usage variations *** 64 decbin(): Argument #1 ($num) must be of type int, float given 67 decbin(): Argument #1 ($num) must be of type int, float given 70 decbin(): Argument #1 ($num) must be of type int, float given 85 decbin(): Argument #1 ($num) must be of type int, string given 88 decbin(): Argument #1 ($num) must be of type int, string given
|
H A D | decbin_variation1_64bit.phpt | 2 Test decbin() function : usage variations - different data types as $number arg 11 echo "*** Testing decbin() : usage variations ***\n"; 36 // loop through each element of $inputs to check the behaviour of decbin() 41 var_dump(decbin($input)); 49 *** Testing decbin() : usage variations *** 64 decbin(): Argument #1 ($num) must be of type int, float given 67 decbin(): Argument #1 ($num) must be of type int, float given 85 decbin(): Argument #1 ($num) must be of type int, string given 88 decbin(): Argument #1 ($num) must be of type int, string given
|
H A D | decbin_basiclong_64bit.phpt | 2 Test decbin function : 64bit long tests 25 var_dump(decbin($longVal)); 58 decbin(): Argument #1 ($num) must be of type int, float given
|
H A D | decbin_basic.phpt | 2 Test decbin() - basic function test 21 var_dump(decbin($value)); 46 decbin(): Argument #1 ($num) must be of type int, string given
|
/PHP-8.1/ext/gd/tests/ |
H A D | bug79615.phpt | 15 echo decbin(ord(ob_get_clean()[0xA]));
|
/PHP-8.1/ext/standard/tests/strings/ |
H A D | strip_tags_variation6.phpt | 16 "<html>I am html string</html>".decbin(65)."<?php I am php string?>"
|
H A D | htmlspecialchars_decode_variation6.phpt | 15 "This converts\t decimal to \$string".decbin(65)."Hello world",
|
H A D | strncasecmp_variation6.phpt | 14 $str1 = decbin($ASCII); //ASCII value in binary form 15 …$str2 = decbin( ord( chr($ASCII) ) ); //Getting equivalent ASCII value for the character in binar… 23 $str1 = decbin(256); 24 $str2 = decbin( ord( chr(256) ));
|
/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_stmt_fetch_bit.phpt | 36 … $sql = sprintf("INSERT INTO test(id, label) VALUES (%d, b'%s')", $value, decbin($value));
|
H A D | mysqli_fetch_assoc_bit.phpt | 69 $bin = ($bits < 32) ? decbin($value) : dec32bin($value, $bits);
|
H A D | mysqli_stmt_get_result_bit.phpt | 75 $bin = ($bits < 32) ? decbin($value) : dec32bin($value, $bits);
|
H A D | mysqli_stmt_bind_result_bit.phpt | 89 $bin = ($bits < 32) ? decbin($value) : dec32bin($value, $bits);
|
/PHP-8.1/ext/standard/ |
H A D | math.c | 935 PHP_FUNCTION(decbin) in PHP_FUNCTION() argument
|
H A D | basic_functions.stub.php | 1450 function decbin(int $num): string {} function
|
H A D | basic_functions_arginfo.h | 2695 ZEND_FUNCTION(decbin); 3338 ZEND_FE(decbin, arginfo_decbin)
|
Completed in 36 milliseconds