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