Numbers
- 0
- 0x
<?php echo 42; // 42 ?>
<br>
<?php echo 3.14; // 3.14 ?>
<br>
<?php echo 0x11; // 17 (hexa) ?>
<br>
<?php echo 011; // 9 (octal) ?>
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
<?php echo 42; // 42 ?>
<br>
<?php echo 3.14; // 3.14 ?>
<br>
<?php echo 0x11; // 17 (hexa) ?>
<br>
<?php echo 011; // 9 (octal) ?>