How to add an array element to an array in php
Methods to add elements: 1. Use the "array_unshift(array, array element)" statement to add elements at the beginning of the array; 2. Use the "array_push(array, array element)" statement to add elements to the end of the array Add elements; 3. Use the "array_pad(array, array length 1, element)" statement.
The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer
php adds to the array Methods of an array element
1. The array_unshift() function inserts new elements into the array
array_unshift($array,$ value1,$value2...)
The function can insert one or more new elements (key values) at the beginning of the array.
Let’s take a closer look at the following example:
<?php $arr=array(10,12,20); array_unshift($arr,8); var_dump($arr); ?>
array_unshift() function will not maintain the original numerical index relationship and will delete all Numeric key names are reassigned, that is, counting starts from 0; but all string key names remain unchanged.
<?php header("Content-type:text/html;charset=utf-8"); $arr=array("a"=>"red","b"=>"green",3=>"pink"); echo "原来的数组:"; var_dump($arr); array_unshift($arr,"blue"); echo "在开头插入一个新元素后:"; var_dump($arr); ?>
Output result:
2. The array_push() function inserts new elements into the array
array_push($array,$value1,$value2...)
The function can insert one or more elements (key values) at the end of the array.
Let’s take a closer look at the following example:
<?php $arr=array(10,12,20); array_push($arr,8); var_dump($arr); ?>
array_push() function is different from array_unshift() function, it will not reset the value key name, but counts based on the original numerical key name.
<?php header("Content-type:text/html;charset=utf-8"); $arr=array("a"=>"red","b"=>"green",3=>"pink"); array_push($arr,8,"9",3.14); var_dump($arr); ?>
Output result:
3. The array_pad() function inserts new elements into the array
array_pad($array,$size,$value)
The function can insert a key value $value
into the array $array
, thereby filling the array to the specified The length of $size
. (The $size
parameter can be understood as the final number of elements in the array, that is, the length of the array after the insertion operation).
You only need to set the $size parameter to The original array length is 1
to insert a new element
<?php $arr=array(10,12,20); $result =array_pad($arr,4,1); var_dump($result); ?>
From the above example, you can It can be seen that the array_pad() function can insert elements at the end of the array. In fact, the array_pad() function can also insert elements at the beginning of the array; and the key to this is the $size
parameter. The
$size
parameter has three values: if
is a positive number, elements will be inserted at the end of the array;
If is a negative number, insert the element at the beginning of the array;
If its absolute value is less than or equal to the length of the
$array
array, no element will be inserted. Insert operation.
<?php $arr=array(10,12,20); $result =array_pad($arr,-5,1); var_dump($result); $result =array_pad($arr,3,1); var_dump($result); $result =array_pad($arr,2,1); var_dump($result); ?>
The output result is:
The value of parameter $value
can also be an array, that is Insert an entire array, and the original array will become a two-dimensional array.
<?php header("Content-type:text/html;charset=utf-8"); $arr=array(10,12,20); $result =array_pad($arr,-5,array("张三",25,"男")); var_dump($result); ?>
The output result is:
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to add an array element to an array in php. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
