Php octdec
From w3cyberlearnings
Contents |
PHP function octdec
This function returns octal to decimal.
Syntax octdec
X is the octal string to convert.
octdec(X)
Example 1
<?php echo octdec('86'); echo "<br/>"; echo octdec('20'); echo "<br/>"; echo octdec('112'); ?>
Output
6 16 74