PHP decoct() 函数
PHP decoct() 函数
实例
把十进制转换为八进制:
<?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() 函数把十进制数转换为八进制数。
提示:如需把八进制转换为十进制,请查看 octdec() 函数。
语法
decoct(number);
参数 | 描述 |
---|---|
number | 必需。规定要转换的十进制值。 |
技术细节
返回值: | 一个字符串,包含十进制值的八进制数。 |
---|---|
返回类型: | String |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP 语法
- PHP EOF(heredoc) 使用说明
- PHP 常量
- PHP For 循环
- PHP $_GET 变量
- PHP array_combine() 函数
- PHP array_diff_uassoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect() 函数
- PHP array_key_exists() 函数
- PHP array_multisort() 函数
- PHP array_product() 函数
- PHP array_sum() 函数
- PHP array_unique() 函数
- PHP array_values() 函数
- PHP natsort() 函数
- PHP FTP 函数
- PHP Libxml 函数
- PHP 5 MySQLi 函数
- PHP PDO