PHP decbin() 函數(shù)
PHP decbin() 函數(shù)
實(shí)例
把十進(jìn)制轉(zhuǎn)換為二進(jìn)制:
<?php
echo decbin("3") . "<br>";
echo decbin("1") . "<br>";
echo decbin("1587") . "<br>";
echo decbin("7");
?>
運(yùn)行實(shí)例 ?
定義和用法
decbin() 函數(shù)把十進(jìn)制數(shù)轉(zhuǎn)換為二進(jìn)制數(shù)。
提示:如需把二進(jìn)制轉(zhuǎn)換為十進(jìn)制,請查看 bindec() 函數(shù)
語法
decbin(number);
參數(shù) | 描述 |
---|---|
number | 必需。規(guī)定要轉(zhuǎn)換的十進(jìn)制值。 |
技術(shù)細(xì)節(jié)
返回值: | 一個字符串,包含十進(jìn)制值的二進(jìn)制數(shù)。 |
---|---|
返回類型: | String |
PHP 版本: | 4+ |

相關(guān)文章
- PHP 變量
- PHP 文件處理
- PHP 文件上傳
- PHP array() 函數(shù)
- PHP array_change_key_case() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP arsort() 函數(shù)
- PHP asort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP next() 函數(shù)
- PHP reset() 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Filter 函數(shù)
- PHP 雜項(xiàng) 函數(shù)
- PHP 5 MySQLi 函數(shù)
- PHP PDO