当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > octdec() 函数
The octdec() function converts an octal number to a decimal number.
octdec()函数的作用是:将一个八进制数转换为十进制。
octdec(oct_number) |
Parameter 参数 | Description 描述 |
---|---|
oct_number | Required. Specifies the octal number to convert 必要参数。指定需要执行转换的八进制数值对象 |
<?php echo octdec("36") . "<br />"; echo octdec("12") . "<br />"; echo octdec("3063") . "<br />"; echo octdec("106"); ?> |
The output of the code above will be:
上述代码将输出下面的结果:
30 10 1587 70 |