Lesson 11 of 3037%
(Progress persistence is disabled until Phase 9)
PHP
Beginner
Arrays
Learn about Arrays in PHP.
PHP is a powerful server-side language. In this lesson, we will cover Arrays.
Real code examples
<?php
// Indexed array
$colors = array("Red", "Green", "Blue");
// Short array syntax
$fruits = ["Apple", "Banana", "Cherry"];
// Associative array
$ages = ["Peter" => "35", "Ben" => "37", "Joe" => "43"];
echo "Peter is " . $ages['Peter'] . " years old.";
?>
Common mistakes
Make sure you include the <?php tag when writing PHP!
Try It Yourself
You can experiment with this in the Playground.