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

相關(guān)文章
- PHP 語(yǔ)法
- PHP EOF(heredoc) 使用說(shuō)明
- PHP 常量
- PHP For 循環(huán)
- PHP $_GET 變量
- PHP array_combine() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_intersect() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_values() 函數(shù)
- PHP natsort() 函數(shù)
- PHP FTP 函數(shù)
- PHP Libxml 函數(shù)
- PHP 5 MySQLi 函數(shù)
- PHP PDO