Home>Article>Backend Development> How to add elements from the end of an array in php

How to add elements from the end of an array in php

青灯夜游
青灯夜游 Original
2022-05-10 18:22:05 5821browse

Method: 1. Use "array_push(array, element list)" to insert one or more elements at the end; 2. Use "array_splice(array, count(array),0,insert value)" ;3. Use "array_merge(array1,array2)" to store the value of array2 into array1.

How to add elements from the end of an array in php

The operating environment of this tutorial: Windows 7 system, PHP version 8.1, DELL G3 computer

php starts from the end of the array Methods to add elements

1. Use the array_push() function to add elements from the end of the array

The array_push() function can insert an element at the end of the array or multiple elements (key values), the syntax is as follows:

array_push($array,$value1,$value2...)

Example:

How to add elements from the end of an array in php

It can be seen that 3 are inserted at the end of the $arr array Elements: integer "8", string "9" and floating point number "3.14".

The elements inserted by the array_push() function can be of array type

How to add elements from the end of an array in php

2. Use the array_splice() function to add elements from the end of the array

array_splice($array,$start,$length,$value)The function is a powerful function that can be used to delete array elements, replace array elements, and also insert Array elements (just set parameter$lengthto 0).

When$length=0, then the parameter$startcan specify the position (subscript) to start inserting, and the parameter$valuecan The insertion value can be specified (if there are multiple values, it needs to be set as an array).

And when the value of$startis set to "array length value", that is,count($arr)can be at the end of the array Insert elements.

The output result is:

How to add elements from the end of an array in php

3. Use the array_pad() function to add elements from the end of the array

array_pad($array,$size,$value)The function can insert a key value$valueinto the array$array, thereby Pads the array to the specified length$size. (The$sizeparameter can be understood as the final number of elements in the array, that is, the length of the array after the insertion operation).

So how to use the array_pad() function to add elements from the end of the array? The key is the $size parameter.

  • When the $size parameter is a positive number, elements are inserted at the end of the array.

How to add elements from the end of an array in php

The elements inserted by the array_pad() function can be of array type, then the original array will become a two-dimensional array.

The output result is:

How to add elements from the end of an array in php

4. Use the array_merge() function to add elements from the end of the array

array_merge(array1,array2,array3...)The function is used to merge one or more arrays into one array, and store the values ofarray2,array3...intoarray1in.

If two or more array elements have the same key name, the last element will overwrite the other elements.

How to add elements from the end of an array in php

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to add elements from the end of 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