PHP Arrays

0
2KB

An array stores multiple values in one single variable:

ExampleGet your own PHP Server

$cars = array("Volvo", "BMW", "Toyota");
Try it Yourself »

What is an Array?

An array is a special variable that can hold many values under a single name, and you can access the values by referring to an index number or name.


PHP Array Types

In PHP, there are three types of arrays:


Working With Arrays

In this tutorial you will learn how to work with arrays, including:


Array Items

Array items can be of any data type.

The most common are strings and numbers (int, float), but array items can also be objects, functions or even arrays.

You can have different data types in the same array.

Example

Array items of four different data types:

$myArr = array("Volvo", 15, ["apples", "bananas"], myFunction);
Try it Yourself »

Array Functions

The real strength of PHP arrays are the built-in array functions, like the count() function for counting array items:

Example

How many items are in the $cars array:

$cars = array("Volvo", "BMW", "Toyota");
echo count($cars);
Try it Yourself »

For a complete reference of all array functions, go to our complete PHP Array Reference.


PHP Exercises

Test Yourself With Exercises

Exercise:

Use the correct function to output the number of items in an array.

$fruits = array("Apple", "Banana", "Orange");
echo ;

Start the Exercise

Rechercher
Catégories
Lire la suite
Autre
PHP Strings
A string is a sequence of characters, like "Hello world!". Strings Strings in PHP are...
Par PHP Tutorial 2024-05-17 07:28:17 0 3KB
Autre
PHP Math
PHP has a set of math functions that allows you to perform mathematical tasks on numbers. PHP...
Par PHP Tutorial 2024-05-17 07:39:09 0 3KB
Autre
PHP Create Arrays
Create Array You can create arrays by using the array() function: ExampleGet your...
Par PHP Tutorial 2024-05-17 08:01:55 0 3KB
Autre
PHP Numbers
In this chapter we will look in depth into Integers, Floats, and Number Strings. PHP Numbers...
Par PHP Tutorial 2024-05-17 07:37:05 0 3KB
Autre
PHP Data Types
PHP Data Types Variables can store data of different types, and different data types can do...
Par PHP Tutorial 2024-05-17 07:27:24 0 2KB