Home  >  Article  >  Backend Development  >  How to create an array in PHP

How to create an array in PHP

PHPz
PHPzOriginal
2023-04-26 10:32:37479browse

PHP is a popular programming language that is widely used for website development and server-side programming. In PHP, array is a very important data type. Arrays are very useful in storing data, so it is very important to build arrays in PHP. In this article, we will explain how to create an array in PHP.

Create a basic array

In PHP, you can use the array() function to create a basic array. For example, we can use the following code to create an array of numbers:

$array = array(1, 2, 3, 4, 5);

Note that the array elements here are separated by commas, and the array index starts from 0. You can also use the following code to create an associative array:

$array = array("name" => "John", "age" => 30, "email" => "john@example.com");

In this example, we use the strings "name", "age" and "email" as keys, and the corresponding values ​​are "John", "30" and "john@example.com".

Create a multidimensional array

In addition to basic arrays, PHP also provides the concept of multidimensional arrays. A multidimensional array is an array nested within another array. For example, we can use the following code to build a two-dimensional array:

$array = array(
    array("name" => "John", "age" => 30),
    array("name" => "Jane", "age" => 25),
    array("name" => "Tom", "age" => 35)
);

In this example, we use an array containing three elements, where each element is an associative array containing the key Elements for "name" and "age".

Accessing Array Elements

Once we have built an array, we can access its elements using indexes or keys. For example, for a numeric array, we can use the following code to access the first element:

echo $array[0];

For an associative array, we can use the following code to access the value corresponding to the "name" key:

echo $array["name"];

For multi-dimensional arrays, we need to use multiple indexes or keys to access its elements. For example, we can use the following code to access the value corresponding to the "name" key of the first element in the nested array:

echo $array[0]["name"];

Add elements to the array

After creating the array, We can also add elements to it. For a numeric array, we can add an element to the end of the array using the following code:

$array[] = 6;

For an associative array, we can add a new key-value pair to the array using the following code:

$array["phone"] = "123-456-789";

Summary

PHP is a powerful programming language that can easily construct arrays of various types. Whether it's a numeric array, an associative array, or a multidimensional array, PHP provides convenient methods to create, access, and modify them. I hope this article helps you better understand how to create arrays in PHP.

The above is the detailed content of How to create an array in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn