Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Indexed Arrays 5:13
- Adding Array Elements 5:08
- List Quiz 5 questions
- Removing Array Elements 4:50
- Editing Array Elements 1:36
- Modifying Arrays 3 objectives
- Associative Arrays 3:48
- Associative Quiz 5 questions
- Mixing Data Types in Arrays 6:07
- Multidimensional Arrays 6:14
- Multidimensional Arrays 3 objectives
- Sorting Arrays 6:16
- Mixing and Sorting 5 questions
Well done!
You have completed PHP Arrays and Control Structures!

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
An array is a compound variable type meaning it can contain more than one value. We'll start with a basic indexed array, which can be used as a list of items: shopping list, days of the week, the top ten scores in a game, or a todo list.
Documentation
Arrays in PHP are actually ordered maps. A map is a type that associates values to keys. This type is optimized for several different uses; it can be treated as an array, list (vector), hash table (an implementation of a map), dictionary, collection, stack, queue, and probably more. As array values can be other arrays, trees and multidimensional arrays are also possible.
See more about the Function for Creating Arrays
Shortcut for Assigning Values
Leave off the array keyword and use square brackets instead.
$learn = ['Conditionals', 'Arrays', 'Loops'];
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
A X
12,842 Points2 Answers
-
A X
12,842 Points3 Answers
-
Keigo Nishida
5,449 PointsThe length of characters of "Conditionals" is 12, but she said 18. It's a mistake, right?
Posted by Keigo NishidaKeigo Nishida
5,449 Points5 Answers
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up