PHP bindec() 函數(shù)
PHP bindec() 函數(shù)
實(shí)例
把二進(jìn)制轉(zhuǎn)換為十進(jìn)制:
<?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");
?>
運(yùn)行實(shí)例 ?
定義和用法
bindec() 函數(shù)把二進(jìn)制數(shù)轉(zhuǎn)換為十進(jìn)制數(shù)。
提示:如需把十進(jìn)制轉(zhuǎn)換為二進(jìn)制,請(qǐng)查看 decbin() 函數(shù)。
語法
bindec(binary_string);
參數(shù) | 描述 |
---|---|
binary_string | 必需。規(guī)定要轉(zhuǎn)換的二進(jìn)制字符串。 注釋: 參數(shù)值必須是字符串! |
技術(shù)細(xì)節(jié)
返回值: | binary_string 的十進(jìn)制值。 |
---|---|
返回類型: | Float / Integer |
PHP 版本: | 4+ |

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 函數(shù)
- PHP 文件上傳
- PHP JSON
- PHP array_combine() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP sort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Date/Time 函數(shù)