search
HomeBackend DevelopmentPHP TutorialCommonly used array functions in PHP
Commonly used array functions in PHPJul 06, 2018 am 09:34 AM
array function

This article mainly introduces the commonly used array functions in PHP, which has certain reference value. Now I share it with you. Friends in need can refer to it

1. array_fill(index,number,value ) Fill the array with values

Parameter description:

Index: The first index value of the returned array

Number: Specifies the number of elements to be inserted

 value: The value used to fill the array

<?php
$a1=array_fill(3,4,"blue");
print_r($a1);
?> 

Run result:

Array ( [3] => blue [4 ] => blue [5] => blue [6] => blue )

2. array_combine($keys,$values) merge array

Parameter description:

$keys: Key name array

$values: Key value array

<?php
$fname=array("Bill","Steve","Mark");
$age=array("60","56","31");

$c=array_combine($fname,$age);
print_r($c);
?>

Run result:

Array ( [Bill] => 60 [Steve] => 56 [Mark] => 31 )

3. array_intersect_key($arr1,$arr2,$arr3...) compares two or more The key names of arrays, return the intersection

<?php
$a1=array("a"=>"red","b"=>"green","c"=>"blue");
$a2=array("a"=>"red","c"=>"blue","d"=>"pink");

$result=array_intersect_key($a1,$a2);
print_r($result);
?>

Return result:

Array ( [a] => red [c] => ; blue )

4. array_shift($arr) deletes the first element in the array and returns the deleted element

<?php
$a=array("a"=>"red","b"=>"green","c"=>"blue");
echo array_shift($a);
print_r ($a);
?>

return Result:

redArray ( [b] => green [c] => blue )

5, array_walk($arr,function($value,$key){}) function Apply a callback function to each element in the array

To change the value in the array, you need to use a reference type&$value

<?php
function myfunction(&$value,$key)
{
$value="yellow";
}
$a=array("a"=>"red","b"=>"green","c"=>"blue");
array_walk($a,"myfunction");
print_r($a);
?>

to return the result :

Array ( [a] => yellow [b] => yellow [c] => yellow )

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Introduction to PHP namespaces

Introduction to PHP file programming

The above is the detailed content of Commonly used array functions 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
PHP8中的数组函数:array_pad()的高效使用方法PHP8中的数组函数:array_pad()的高效使用方法May 16, 2023 pm 02:00 PM

PHP8是最新的PHP版本,它提供了许多新的函数和改进的功能,其中之一是数组函数array_pad()。在本文中,我们将探讨array_pad()函数的高效使用方法。什么是array_pad()函数array_pad()函数可以将一个数组填充到指定长度,并返回填充后的数组。该函数接受三个参数:array_pad(array$array,int$leng

PHP8中的数组函数:array_unique()的多种用途PHP8中的数组函数:array_unique()的多种用途May 17, 2023 am 08:13 AM

在PHP编程语言中,数组是一种非常常见的数据类型。数组的独特之处在于,它允许我们一次存储多个相关变量,并且可以对这些变量进行高效地操作和处理。在PHP8中,有许多有用的数组函数可以帮助我们优化代码,其中一个就是array_unique()。array_unique()函数的作用是去除重复的数组元素,并返回一个新的数组。这个函数可以用在很多场合中,下面我们将来

PHP数组函数之array_diff_key()使用方法详解PHP数组函数之array_diff_key()使用方法详解Jun 27, 2023 pm 05:18 PM

PHP作为一门流行的编程语言,其数组函数也是非常强大的。当需要比较两个数组的键名时,可以使用array_diff_key()函数。该函数可以帮助我们找出第一个数组中有的键名,但是在第二个数组中却不存在的键名,实现数组之间的差异比较。本文将详细介绍array_diff_key()函数的使用方法。array_diff_key()函数的基本用法array_diff

PHP8中的数组函数:array_slice()的多种操作技巧PHP8中的数组函数:array_slice()的多种操作技巧May 15, 2023 pm 10:43 PM

在PHP8中,数组是一种非常常见的数据结构,经常被用来存储和处理数据。其中,array_slice()函数是一个强大的工具,可以对数组进行切片、截取和分割。本文将介绍该函数的多种操作技巧,帮助开发者更好地利用它。1.切片操作array_slice()函数最基本的操作就是切片,它可以通过指定起始位置和长度来获取数组的一部分,示例代码如下:$arr=a

PHP8.1更新:数组和字符串函数的性能提升PHP8.1更新:数组和字符串函数的性能提升Jul 08, 2023 am 08:25 AM

PHP8.1更新:数组和字符串函数的性能提升随着时间的推移,PHP编程语言一直在不断发展和改进。最近发布的PHP8.1版本带来了许多新功能和性能增强,特别是在数组和字符串函数方面。这些改进使得开发者能够更高效地处理数组和字符串操作,提升了整体的性能和效率。数组函数的性能提升在PHP8.1中,数组函数经过了改进和优化。下面是一些重要的数组函数性能提升示例:(1

如何使用Go语言的数组函数求和并返回结果?如何使用Go语言的数组函数求和并返回结果?Jul 31, 2023 pm 02:25 PM

如何使用Go语言的数组函数求和并返回结果?Go语言提供了丰富的数组操作函数,其中包含了求数组元素和的函数。使用这些函数可以方便地对数组进行求和操作,并返回结果。本文将介绍如何使用Go语言的数组函数求和并返回结果,并附带代码示例。首先,我们先了解一下Go语言中的数组。数组是一种存储固定大小元素序列的数据结构。在Go语言中,数组的长度是固定的,而且数组的类型和元

在PHP中使用数组函数进行快速排序在PHP中使用数组函数进行快速排序Jun 16, 2023 am 08:54 AM

PHP是一种非常流行的编程语言,它广泛用于Web开发。在PHP中,数组是一种非常常见的数据类型,也是一种非常强大的数据结构。正因为如此,PHP提供了许多数组函数来帮助开发人员处理和操作数组。其中包括快速排序函数,可以帮助我们快速对数组进行排序。快速排序是一种常见的排序算法,它的基本思想是通过比较和交换来将一个数组分成两个子数组,一个比另一个小,然后递归地对每

PHP8中的数组函数:array_map()的详细应用技巧PHP8中的数组函数:array_map()的详细应用技巧May 18, 2023 am 08:06 AM

近年来,随着互联网行业的迅速发展,编程语言也在不断地更新换代。PHP作为一种较为流行的编程语言,也在这种趋势下不断发展。PHP8作为最新的版本,更新了其内置函数库,提供了更多实用的函数。本文将介绍PHP8中的数组函数array_map()的详细应用技巧。一、array_map()函数的定义array_map()函数是PHP的内置函数,其定义如下:array_

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.