PHP bindec() 函数
PHP bindec() 函数
实例
把二进制转换为十进制:
<?php
echo bindec("0011") . "<br>";
echo bindec("01") . "<br>";
echo bindec("11000110011") . "<br>";
echo bindec("111");
?>
echo bindec("0011") . "<br>";
echo bindec("01") . "<br>";
echo bindec("11000110011") . "<br>";
echo bindec("111");
?>
运行实例 »
定义和用法
bindec() 函数把二进制数转换为十进制数。
提示:如需把十进制转换为二进制,请查看 decbin() 函数。
语法
bindec(binary_string);
参数 | 描述 |
---|---|
binary_string | 必需。规定要转换的二进制字符串。 注释: 参数值必须是字符串! |
技术细节
返回值: | binary_string 的十进制值。 |
---|---|
返回类型: | Float / Integer |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP EOF(heredoc) 使用说明
- PHP 函数
- PHP 文件上传
- PHP JSON
- PHP array_combine() 函数
- PHP array_diff_ukey() 函数
- PHP array_fill_keys() 函数
- PHP array_intersect_ukey() 函数
- PHP array_pop() 函数
- PHP array_replace() 函数
- PHP array_shift() 函数
- PHP array_splice() 函数
- PHP array_sum() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_walk() 函数
- PHP next() 函数
- PHP prev() 函数
- PHP sort() 函数
- PHP usort() 函数
- PHP 5 Date/Time 函数