


1. Custom functions
Custom functions are functions defined by ourselves, customized in PHP The function format is as follows:
function funname(arg1, arg2, arg3......){ //TODO return values; }
<?php function fun($m, $n){ if($m==0 || $n==0){ return 0; }else{ $a=$m*$n; return $a; } } $p=2; $h=3; echo $p."*".$h."=".fun($p,$h); ?>
Output result: Let’s take another function with variable parameters
<?php /* function fun($m, $n){ if($m==0 || $n==0){ return 0; }else{ $a=$m*$n; return $a; } } $p=2; $h=3; echo $p."*".$h."=".fun($p,$h); */ function fun($m, $n=1, $x=2){ $a=$m*$n*$x; return $a; } $p=2; echo fun($p)."<br>"; // 2*1*2 = 4 echo fun($p, 3)."<br>"; // 2*3*2 = 12 echo fun($p, 3, 3)."<br>"; // 2*3*3 = 18 ?>
<?php /* function fun($m, $n){ if($m==0 || $n==0){ return 0; }else{ $a=$m*$n; return $a; } } $p=2; $h=3; echo $p."*".$h."=".fun($p,$h); */ /* function fun($m, $n=1, $x=2){ $a=$m*$n*$x; return $a; } $p=2; echo fun($p)."<br>"; // 2*1*2 = 4 echo fun($p, 3)."<br>"; // 2*3*2 = 12 echo fun($p, 3, 3)."<br>"; // 2*3*3 = 18 */ function fun(&$n){ $n=$n*$n; } $p=2; fun($p); echo $p; ?>
##2. Array definition assignment
1. Basic writing format of array
Simple form: array(value 1, Value 2, value 3, …….)
array(“aa”, 12, true, 2.2, “test”, 50); //Get data through array subscript
Complete Format: array(key 1=>value 1, key 2=>value 2, …)
array(“title”=>”aa”, “age”=>20); //The data can only be obtained through the key name
2. How to create an array
//第一种 $arr1=array(11, 22, 33, "44"); //第二种 $arr2=array('a'=>'11', 'b'=>'22'); //第三种 $arr3[0]='20'; $arr3[1]='30';
3. Array operation
1. Modify
$arr=array(11, 22, 33, 44); $arr[0]=55; //数组变为$arr=array(55, 22, 33, 44);
2. Delete
$arr=array(11, 22, 33, 44); unset($arr[0]); //数组变为$arr=array(22, 33, 44);
3. Use
$arr=array(11, 22, 33, 44); echo $arr[0]; $arr=array('a'=>11, 'b'=>22, 'c'=>33, 'd'=>44); echo $arr['b']];
4. Traverse
$arr=array('a'=>11, 'b'=>22, 'c'=>33, 'd'=>44); foreach($arr as $value){ //无键名 echo $value."<br>"; } foreach($arr as $id=>$value){ //输出键和值 echo $id..$value."<br>"; }
4. Two-dimensional array
$arr=array(array("1","11","111"), array("2","22","222")); echo $arr[1][2];
5. Array function
(1)
array_change_key_case(array, case)array: required, array.
case: Optional, CASE_LOWER (default value, lowercase letters return the keys of the array), CASE_UPPER (uppercase letters return the keys of the array)
Function: Convert all KEYs of the array to Uppercase or lowercase.
<?php $a=array("a"=>"Cat","b"=>"Dog","c"=>"Horse"); print_r(array_change_key_case($a,CASE_UPPER)); ?> 结果:Array ( [A] => Cat [B] => Dog [C] => Horse )
(2)array_chunk(array,size,preserve_key)
array: required.
size: Required, specifies how many elements each new array contains.
preserve_key: optional, true (preserve key name), false (new index)
Function: Divide an array into new array blocks.
<?php //array_chunk(array,size,preserve_key) $a1=array("a"=>"Cat","b"=>"Dog","c"=>"Horse","d"=>"Cow"); print_r(array_chunk($a1,2)); $a2=array("a"=>"Cat","b"=>"Dog","c"=>"Horse","d"=>"Cow"); print_r(array_chunk($a2,2,true)); ?>
Array ( [0] => Array ( [0] => Cat [1] => Dog ) [1] => Array ( [0] => Horse [1] => Cow ) )
Array ( [0] => Array ( [a] => Cat [b] => Dog ) [1] => Array ( [c] => Horse [ d] => Cow ) )
…….
There are many functions like this, you can check them when you use them, the list is as follows (php represents the first version)
Function | Description | PHP |
---|---|---|
array() | Create an array . | 3 |
array_change_key_case() | Returns an array whose keys are all uppercase or lowercase. | 4 |
array_chunk() | Split an array into new array chunks. | 4 |
array_combine() | Creates a new array by merging two arrays. | 5 |
array_count_values() | is used to count the number of occurrences of all values in the array. | 4 |
array_diff() | Returns the difference array of two arrays. | 4 |
array_diff_assoc() | Compare the key name and key value, and return the difference array of the two arrays. | 4 |
array_diff_key() | Compare the key names and return the difference array of the two arrays. | 5 |
array_diff_uassoc() | Calculate the difference set of the array by doing index checking through the callback function provided by the user. | 5 |
array_diff_ukey() | Use the callback function to compare the key names to calculate the difference set of the array. | 5 |
array_fill() | Fills the array with the given value. | 4 |
array_filter() | Use the callback function to filter the elements in the array. | 4 |
array_flip() | Exchange the keys and values in the array. | 4 |
array_intersect() | Calculate the intersection of arrays. | 4 |
array_intersect_assoc() | Compares the key name and key value, and returns the intersection array of the two arrays. | 4 |
array_intersect_key() | Calculate the intersection of arrays using key name comparison. | 5 |
array_intersect_uassoc() | Calculate the intersection of arrays with index checking, and use the callback function to compare the indexes. | 5 |
array_intersect_ukey() | Use the callback function to compare the key names to calculate the intersection of the arrays. | 5 |
array_key_exists() | Checks whether the given key name or index exists in the array. | 4 |
array_keys() | Returns all key names in the array. | 4 |
array_map() | Apply the callback function to the cells of the given array. | 4 |
array_merge() | Merge one or more arrays into one array. | 4 |
array_merge_recursive() | Recursively merge one or more arrays. | 4 |
array_multisort() | Sort multiple arrays or multidimensional arrays. | 4 |
array_pad() | Pads the array to the specified length with values. | 4 |
array_pop() | Pop the last unit of the array (pop off the stack). | 4 |
array_product() | Calculate the product of all values in an array. | 5 |
array_push() | Push one or more units (elements) to the end of the array (push). | 4 |
array_rand() | Randomly select one or more elements from the array and return it. | 4 |
array_reduce() | Use the callback function to iteratively reduce the array to a single value. | 4 |
array_reverse() | Reverse the order of elements in the original array, create a new array and return it. | 4 |
array_search() | Search for the given value in the array and return the corresponding key name if successful. | 4 |
array_shift() | Deletes the first element in the array and returns the value of the deleted element. | 4 |
array_slice() | Remove a segment of value from the array based on conditions and return it. | 4 |
array_splice() | Remove part of the array and replace it with other values. | 4 |
array_sum() | Calculate the sum of all values in an array. | 4 |
array_udiff() | Use the callback function to compare data to calculate the difference of the array. | 5 |
array_udiff_assoc() | Calculate the difference set of the array with index check, and use the callback function to compare the data. | 5 |
array_udiff_uassoc() | With index check, calculate the difference set of the array, and use the callback function to compare the data and index. | 5 |
array_uintersect() | Calculate the intersection of arrays and use callback functions to compare data. | 5 |
array_uintersect_assoc() | Calculate the intersection of arrays with index checking, and use callback functions to compare data. | 5 |
array_uintersect_uassoc() | Calculate the intersection of arrays with index checking, and use the callback function to compare the data and index. | 5 |
array_unique() | Remove duplicate values from the array. | 4 |
array_unshift() | Insert one or more elements at the beginning of the array. | 4 |
array_values() | Returns all the values in the array. | 4 |
array_walk() | Apply a user function to each member of the array. | 3 |
array_walk_recursive() | Applies a user function recursively to each member of an array. | 5 |
arsort() | Reverse sort the array and maintain the index relationship. | 3 |
asort() | Sort the array and maintain the index relationship. | 3 |
compact() | Create an array, including variable names and their values. | 4 |
count() | Calculate the number of elements in the array or the number of attributes in the object. | 3 |
current() | Returns the current element in the array. | 3 |
each() | Returns the current key/value pair in the array and moves the array pointer forward one step. | 3 |
end() | Point the internal pointer of the array to the last element. | 3 |
extract() | Import variables from the array into the current symbol table. | 3 |
in_array() | Checks whether the specified value exists in the array. | 4 |
key() | Get the key name from the associative array. | 3 |
krsort() | Sort the array in reverse order by key name. | 3 |
ksort() | Sort the array by key name. | 3 |
list() | Assign the values in the array to some variables. | 3 |
natcasesort() | Use the "natural sorting" algorithm to sort the array in a case-insensitive manner. | 4 |
natsort() | Sorts the array using the "natural sorting" algorithm. | 4 |
next() | Move the internal pointer in the array forward one position. | 3 |
pos() | An alias for current(). | 3 |
prev() | Rewind the internal pointer of the array by one bit. | 3 |
range() | Create an array containing elements in the specified range. | 3 |
reset() | Point the internal pointer of the array to the first element. | 3 |
rsort() | Sort the array in reverse order. | 3 |
shuffle() | Rearrange the elements in the array in random order. | 3 |
Alias for sizeof() | count(). | 3 |
sort() | Sort the array. | 3 |
uasort() | Use a user-defined comparison function to sort the values in an array and maintain index association. | 3 |
uksort() | Use a user-defined comparison function to sort the key names in the array. | 3 |
usort() | Use a user-defined comparison function to sort the values in the array. | 3 |
The above is the detailed content of Detailed explanation of custom functions and array examples in php. For more information, please follow other related articles on the PHP Chinese website!

Netflix上的头像是你流媒体身份的可视化代表。用户可以超越默认的头像来展示自己的个性。继续阅读这篇文章,了解如何在Netflix应用程序中设置自定义个人资料图片。如何在Netflix中快速设置自定义头像在Netflix中,没有内置功能来设置个人资料图片。不过,您可以通过在浏览器上安装Netflix扩展来实现此目的。首先,在浏览器上安装Netflix扩展的自定义个人资料图片。你可以在Chrome商店买到它。安装扩展后,在浏览器上打开Netflix并登录您的帐户。导航至右上角的个人资料,然后单击

Win11如何自定义背景图片?在最新发布的win11系统中,里面有许多的自定义功能,但是很多小伙伴不知道应该如何使用这些功能。就有小伙伴觉得背景图片比较单调,想要自定义背景图,但是不知道如何操作自定义背景图,如果你不知道如何定义背景图片,小编下面整理了Win11自定义背景图片步骤,感兴趣的话一起往下看看把!Win11自定义背景图片步骤1、点击桌面win按钮,在弹出的菜单中点击设置,如图所示。2、进入设置菜单,点击个性化,如图所示。3、进入个性化,点击背景,如图所示。4、进入背景设置,点击浏览图片

维恩图是用来表示集合之间关系的图。要创建维恩图,我们将使用matplotlib。Matplotlib是一个在Python中常用的数据可视化库,用于创建交互式的图表和图形。它也用于制作交互式的图像和图表。Matplotlib提供了许多函数来自定义图表和图形。在本教程中,我们将举例说明三个示例来自定义Venn图。Example的中文翻译为:示例这是一个创建两个维恩图交集的简单示例;首先,我们导入了必要的库并导入了venns。然后我们将数据集创建为Python集,之后,我们使用“venn2()”函数创

CakePHP是一个强大的PHP框架,为开发人员提供了很多有用的工具和功能。其中之一是分页,它可以帮助我们将大量数据分成几页,从而简化浏览和操作。默认情况下,CakePHP提供了一些基本的分页方法,但有时你可能需要创建一些自定义的分页方法。这篇文章将向您展示如何在CakePHP中创建自定义分页。步骤1:创建自定义分页类首先,我们需要创建一个自定义分页类。这个

如何在Eclipse中自定义快捷键设置?作为一名开发人员,在使用Eclipse进行编码时,熟练掌握快捷键是提高效率的关键之一。Eclipse作为一款强大的集成开发环境,不仅提供了许多默认的快捷键,还允许用户根据自己的偏好进行个性化的定制。本文将介绍如何在Eclipse中自定义快捷键设置,并给出具体的代码示例。打开Eclipse首先,打开Eclipse,并进入

适用于iPhone的iOS17更新为AppleMusic带来了一些重大变化。这包括在播放列表中与其他用户协作,在使用CarPlay时从不同设备启动音乐播放等。这些新功能之一是能够在AppleMusic中使用交叉淡入淡出。这将允许您在曲目之间无缝过渡,这在收听多个曲目时是一个很棒的功能。交叉淡入淡出有助于改善整体聆听体验,确保您在音轨更改时不会受到惊吓或退出体验。因此,如果您想充分利用这项新功能,以下是在iPhone上使用它的方法。如何為AppleMusic啟用和自定Crossfade您需要最新的

Vue是一款流行的JavaScript框架,它提供了许多方便的功能和API以帮助开发者构建交互式的前端应用程序。随着Vue3的发布,render函数成为了一个重要的更新。本文将介绍Vue3中render函数的概念、用途和如何使用它自定义渲染函数。什么是render函数在Vue中,template是最常用的渲染方式,但是在Vue3中,可以使用另外一种方式:r

如何在CodeIgniter中实现自定义中间件引言:在现代的Web开发中,中间件在应用程序中起着至关重要的作用。它们可以用来执行在请求到达控制器之前或之后执行一些共享的处理逻辑。CodeIgniter作为一个流行的PHP框架,也支持中间件的使用。本文将介绍如何在CodeIgniter中实现自定义中间件,并提供一个简单的代码示例。中间件概述:中间件是一种在请求


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

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
