Math 函数
PHP Manual

octdec

(PHP 4, PHP 5)

octdec八进制转换为十进制

说明

number octdec ( string $octal_string )

返回 octal_string 参数所表示的八进制数的十进制等值。可转换的最大的数值为 17777777777 或十进制的 2147483647。PHP 4.1.0 开始,该函数可以处理大数字,这种情况下,它会返回 float 类型。

Example #1 octdec() 范例

<?php
echo octdec('77') . "\n";
echo 
octdec(decoct(45));
?>

以上例程会输出:

63
45

参见 decoct() bindec()hexdec()base_convert().。

参数

octal_string

The octal string to convert

返回值

The decimal representation of octal_string

更新日志

版本 说明
Since 4.1.0 The function can now convert numbers that are too large to fit into the platforms integer type, larger values are returned as float in that case.

范例

Example #2 octdec() example

<?php
echo octdec('77') . "\n";
echo 
octdec(decoct(45));
?>

以上例程会输出:

63
45

参见


Math 函数
PHP Manual