English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Theoctdec()
The function converts octal to decimal.
octdec(val)
val-the octal string to be converted
Theoctdec()
The function returns the decimal equivalent of the specified octal number.
<?php echo octdec("-120"); ?>
Output Result
a80
Let's look at another example-
<?php echo octdec("170"); echo octdec(decoct(170)); ?>
Output Result
120170