decoct
Description
Syntax
decoct(
int $num
): stringParameters
num
Decimal value to convert
| Negative Decimal | Positive Decimal | Octal |
|---|---|---|
| 0 | 0 | |
| 1 | 1 | |
| 2 | 2 | |
| ... | ... | |
| 9223372036854775806 | 777777777777777777776 | |
| 9223372036854775807 (largest signed integer) | 777777777777777777777 | |
| -9223372036854775808 | 9223372036854775808 | 1000000000000000000000 |
| ... | ... | ... |
| -2 | 18446744073709551614 | 1777777777777777777776 |
| -1 | 18446744073709551615 (largest unsigned integer) | 1777777777777777777777 |
Return
Octal string representation of num
Examples
1
<? $num = 0; $return = decoct($num); echo $return;
0
2
<? $num = 1; $return = decoct($num); echo $return;
1
3
<? $num = 2; $return = decoct($num); echo $return;
2
4
<? $num = 9223372036854775806; $return = decoct($num); echo $return;
777777777777777777776
5
<? $num = 9223372036854775807; $return = decoct($num); echo $return;
777777777777777777777
6
<? $num1 = -9223372036854775808; $num2 = 9223372036854775808; $return1 = decoct($num1); $return2 = decoct($num2); echo $return1 . PHP_EOL . $return2;
7
<? $num1 = -2; $num2 = 18446744073709551614; $return1 = decoct($num1); $return2 = decoct($num2); echo $return1 . PHP_EOL . $return2;
8
<? $num1 = -1; $num2 = 18446744073709551615; $return1 = decoct($num1); $return2 = decoct($num2); echo $return1 . PHP_EOL . $return2;