Skip to Content
Beginning PHP 5.3
book

Beginning PHP 5.3

by Matt Doyle
October 2009
Beginner
836 pages
19h 37m
English
Wrox
Content preview from Beginning PHP 5.3

Chapter 6. Arrays

In Chapter 3, you learned about variables in PHP; in particular, you learned that a variable is a container that can store a single value. However, a couple of types of variables can store many values at once within a single variable. One such type is an object, which you discover in Chapter 8; the other type is an array, which you explore in this chapter.

Arrays are a very powerful feature of any programming language, because they let you easily work with large amounts of similar data. For example, say you are writing a script that stores information about 100 customers. Rather than having to create 100 separate variables — $customer1, $customer2, and so on — to store the customers, you can create just one array variable called $customers that holds information on all the customers at once.

Two specific features of arrays make them good for storing lots of data:

  • Arrays can be of any length — An array can store one value, or millions of values, all referenced via a single variable name (for example, $customers). What's more, you can easily change the length — by adding or removing values — at any time

  • It's easy to manipulate all values in an array at once — For example, you can loop through all the values inside an array, reading or changing them as you go. You can easily sort an array in any order you like. You can search for a value in an array, merge two arrays together, and much more

In this chapter, you:

  • Learn how PHP arrays work

  • Look at different ways of creating ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

PHP and MySQL™ Phrasebook

PHP and MySQL™ Phrasebook

Christian Wenz
PHP 7 Programming Blueprints

PHP 7 Programming Blueprints

Jose Palala, Martin Helmich
PHP 5 Unleashed

PHP 5 Unleashed

John Coggeshall
Pro PHP Programming

Pro PHP Programming

Peter MacIntyre, Brian Danchilla, Mladen Gogala

Publisher Resources

ISBN: 9780470413968Purchase book