Show Output
PHP Convert a Decimal Number to Octal and Vice Versa
"; // 0utputs: 14 echo decoct(256) . "
"; // 0utputs: 400 echo decoct(77) . "
"; // 0utputs: 115 // Convert octal to decimal echo octdec('14') . "
"; // 0utputs: 12 echo octdec('400') . "
"; // 0utputs: 256 echo octdec('115') . "
"; // 0utputs: 77 ?>