Lesson 8 of 3027%
(Progress persistence is disabled until Phase 9)
PHP
Beginner
Integers
Learn about Integers in PHP.
PHP is a powerful server-side language. In this lesson, we will cover Integers.
Real code examples
<?php
$decimal = 34;
$hex = 0x22;
$octal = 042;
$binary = 0b100010;
var_dump($decimal, $hex, $octal, $binary);
?>
Common mistakes
Make sure you include the <?php tag when writing PHP!
Try It Yourself
You can experiment with this in the Playground.