PHP decoct() 函數(shù)
PHP decoct() 函數(shù)
實例
把十進制轉(zhuǎ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");
?>
運行實例 ?
定義和用法
decoct() 函數(shù)把十進制數(shù)轉(zhuǎn)換為八進制數(shù)。
提示:如需把八進制轉(zhuǎn)換為十進制,請查看 octdec() 函數(shù)。
語法
decoct(number);
參數(shù) | 描述 |
---|---|
number | 必需。規(guī)定要轉(zhuǎn)換的十進制值。 |
技術(shù)細節(jié)
返回值: | 一個字符串,包含十進制值的八進制數(shù)。 |
---|---|
返回類型: | String |
PHP 版本: | 4+ |

相關(guān)文章
- PHP 語法
- PHP EOF(heredoc) 使用說明
- 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