search

The difference between the array_merge function and the addition of two arrays
 The array_merge function, when the same index array appears, will merge the index arrays in the two arrays, and add them up with the maximum index value of the first array. If it is an associative array, the value of the subsequent array will overwrite the previous one. Value, for addition, regardless of the index or associative array that appears first, the former is used as the value, and the latter is discarded
array_chunk function
  To cut the array, the first parameter is the array to be cut, the second parameter is the number of elements in each array after cutting, and the third parameter is whether the index of each divided array uses the index name of the original array. , the default is not used
next function
 Returns the value of the next element of the current array element, moves the pointer backward one position, returns false if it does not exist
prev function
 Returns the previous element of the current element and moves the pointer forward one position. Returns true if it does not exist
end function
 Return the value of the last element of the array
current function
 Return the current element of the array without moving the position
sort function
  Sort the values ​​of the array elements in forward order, return true if successful, false if failed. The first parameter is the array to be sorted, and the second parameter is the sorting rule. This function will delete all the original elements of the sorted array. Index value, add new index value after sorting
rsort function
  Sort the values ​​of the array elements in reverse order, returning true if successful and false if failed. The first parameter is the array to be sorted, and the second parameter is the sorting rule. This function will delete all original indexes of the sorted array. value, add new index value after sorting
asort function
  Sort the values ​​of the array elements in forward order and save the index relationship. Return true if successful, false if failed. The first parameter is the array to be sorted, and the second parameter is the sorting rule. The function will maintain the original There is a corresponding relationship between key and value
ksort function
  Sort the keys of the array elements in forward order, return true if successful, false if failed. The first parameter is the array to be sorted, and the second parameter is the sorting rule. This function will maintain the original key-value correspondence. Relationship
shuffle function
Randomly sort the array elements, delete the original key-value relationship, return true if successful, false if unsuccessful
array_reverse function
Sort the array elements in the reverse direction of the original order. The second parameter is the sorted array. If the second parameter is set to true, the original relationship will be maintained after sorting. The default is false
reset function
 Reset an array and move the internal pointer in the array to the cell where the first element of the array is located. If the data is empty, return false
list function
 Assign the elements of the array to variables, and the array is an index array
range function
 Quickly create an array within a specified range. The first parameter is the start value, the second parameter is the end value, and the third parameter is the span. The default is one
array_push function
  Push one or more elements into the end of the array. Successful execution returns the number of units pushed into the array
array_pop function
 Pop the last element of the array, return the last unit of the array, and reduce the length of the array by one. If the array is empty or not an array, return null. After use, the array pointer will point to the first array unit
array_change_key_case function
 Replace all case of strings as array indexes, the first parameter is the array, and the second parameter specifies whether to use uppercase or lowercase
array_intersect function
To calculate the intersection of arrays, there can be multiple parameters, and the key-value correspondence remains unchanged
array_flip function
 Exchange index and value
array_fill function
Set some or all elements in the array to a value. The first parameter is the starting index of the element to be filled, the second parameter is the number of filling, and the third parameter is the value of the filled element
count function
 Count the number of elements in the array
array_count_values ​​function
 Count the number of times each value occurs in the array
array_key_exists function
 Check whether the given index exists in the array, return true if it exists, otherwise return false
array_keys function
  Get all the index names in the array. The first parameter is the array itself. The second parameter is the key value to be selected. The default is all. You can specify a key value to search. The third parameter is used to perform congruence. Compare
array_map function
Apply the callback function to the given array
in_array function
Determine whether a certain value exists in the array. If it exists, it returns true, if not, it returns false. The first parameter is the value you want to find, the second parameter is the array, and the third parameter is used for congruent comparison
key function
 Get the key name of the element pointed to by the current pointer from the associative array
strcmp function
Compare two strings, if str1 waits for str2, return 0, if str1 is less than str2, return -1, if str1 is greater than str2, return a number greater than 0
str_replace function
 Replace all the $search part in str in the string with the string $replace, and return the replaced string. The first parameter is the data to be replaced, the second parameter is the value to be replaced, and the third parameter is the value to be replaced. The first parameter is the string to be operated on, the fourth parameter is the number of substitutions, and when the first and second parameters are arrays, a corresponding relationship is formed
substr_replace function
 The first parameter is the string to be processed, the second parameter is the string to be replaced, and the third parameter is the starting position of the string to replace. If start is a positive number, the replacement will be from the start position of the string. start. ,If start is a negative number, the replacement will start from the penultimate start position of string. The third parameter is the replacement length. If this parameter is set and is a positive number, it indicates the length of the replaced substring in string. If set to a negative number, it represents the number of characters from the end of string to the end of the substring to be replaced. If this parameter is not provided, it defaults to strlen( string ) (the length of the string). Of course, if length is 0, then the function of this function is to insert replacement into the start position of string.
sprintf function
 Format a string. The first parameter is the format to be converted, usually starting with % and ending with the characters being converted. The second parameter is the data to be formatted
substr function
 Get a substring in a string. The first parameter is the string to be processed, the second parameter is the starting position, and the third parameter is the length to be intercepted
rtrim function
 Delete the blank characters (or other specified characters) at the end of the string. The first parameter is the string to be processed, and the second parameter is the character you specify. If not specified, it will be the default
ltrim function
 Delete the blank characters (or other specified characters) at the beginning of the string. The first parameter is the string to be processed, and the second parameter is the character you specify. If not specified, it will be the default
trim function
 Remove whitespace characters (or other specified characters) at the beginning and end of the string
strlen function
 Get the length of a string
mb_strlen function
 Get the length of a string, the first parameter is the string to get the length, the second parameter is the character set to be specified
strtoupper function
Convert all letters in the string to uppercase letters
strtolower function
Convert all letters in the string to lowercase letters
str_repeat function
Used to repeatedly generate a string, the first parameter is the string to be repeatedly generated, and the second parameter is the number of times to be repeated
str_split function
  Split the string into an array. The first parameter is the string to be processed, and the second parameter is the length of the cutting
file_put_contents function
 The first parameter is the path to the file to be written, the second parameter is the content to be written, it will be automatically created if the file to be written does not exist, and the default is replacement writing. When the third parameter is FILE_APPEND, it is expressed as Append writing, the return value is the number of bytes written.
file_get_contents function
Get the file content of the specified path. It is not suitable to be used when the file read is too large. The return value is the obtained content
fopen function
 The first parameter is the path of the file to be opened, and the second parameter is the method of opening the file: r, w (the file will be automatically created if it does not exist, and the file content will be cleared), a, x (the file will not be automatically opened if it does not exist). Create, the file content will be cleared), r+, w+, a+, x+, the return value is the file resource
fwrite function
 The first parameter is the open file resource, the second parameter is the string content of the read length, the size is bytes, the maximum is 8192 bytes
fgets
 The first parameter is the file resource, and the second parameter is to read a string of specified length,
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
php函数返回值可以有几个php函数返回值可以有几个Apr 26, 2022 pm 08:14 PM

php函数返回值只能有一个。在PHP中,函数返回值使用return语句定义,语法“return 返回值;”。return语句只能返回一个参数,即函数只能有一个返回值;如果要返回多个值的话,就需在函数中定义一个数组,将返回值存储在数组中返回。

php传参都是字符串吗php传参都是字符串吗Dec 15, 2022 pm 03:07 PM

不是,php传参可以是字符串、数字、布尔值、数组等。从PHP5.6版本开始支持传递数组参数,函数的形式参数可使用“…”来表示函数可接受一个可变数量的参数,而可变参数将会被当作一个数组传递给函数,语法“function 函数名(...$arr){//执行代码}”。

详细介绍PHP函数和方法的区别详细介绍PHP函数和方法的区别Mar 24, 2023 am 09:45 AM

随着互联网技术的发展,PHP已经成为了非常流行的开发语言之一。身为一个PHP开发者,了解PHP函数和方法的区别是非常重要的,因为它们在编写代码的时候都是必不可少的。在本文中,我们将详细介绍PHP函数和方法的区别。

php函数的参数赋值有哪几种php函数的参数赋值有哪几种Apr 24, 2022 pm 12:10 PM

php函数的参数赋值有3种:1、值传递赋值,将实参的值复制一份再赋值给函数的形参;2、引用传递赋值,把实参的内存地址复制一份,然后传递给函数的形参,进而将实参值赋值给形参;3、直接给函数的参数指定默认值,语法“函数名(参数变量='值')”。

PHP函数的命名规范及规则PHP函数的命名规范及规则May 19, 2023 am 08:14 AM

PHP作为一种非常流行的脚本语言,有着强大的函数库支持,其函数的命名规范和规则对于开发效率和代码可读性都有着重要的影响。本文将介绍PHP函数的命名规范及规则。一、命名风格在PHP中,函数名需要严格符合命名规范和规则,规范主要包括两个方面:命名风格和命名规则。1.下划线命名法下划线命名法是PHP函数命名最常用的方式,也是官方推荐的一种方式。遵循这种方式的函数名

PHP函数的迭代器函数PHP函数的迭代器函数May 19, 2023 am 08:11 AM

随着现代编程语言的不断发展,编程的效率和功能性也不断提高,其中PHP作为一种广泛使用的服务器端脚本语言,也在不断地更新和完善其自身的功能列表。PHP函数的迭代器函数就是其中的一种新功能,为PHP程序员提供了更加灵活和高效的编程方式。在本文中,我们将详细介绍PHP函数的迭代器函数的相关知识。什么是PHP函数的迭代器函数?在介绍PHP函数的迭代器函数之前,我们首

PHP函数的MSSQL函数PHP函数的MSSQL函数May 18, 2023 pm 11:31 PM

PHP是一种开源的服务器端脚本语言,通常用于开发Web应用程序。PHP具有易学易用、灵活、性能优异等优点,因此在Web开发领域得到了广泛应用。而MSSQL作为一种流行的关系型数据库管理系统,也被PHP所支持。在PHP中实现MSSQL数据库操作,需要使用MSSQL函数。MSSQL函数可用于连接数据库、执行查询语句、读写数据库中的数据等操作。接下来,将详细介绍一

php中递归函数是啥意思php中递归函数是啥意思May 31, 2022 pm 12:01 PM

在php中,递归函数指的是自调用函数,也就是函数在函数体内部直接或间接地自己调用自己;使用递归函数时,需要在函数体中附加一个判断条件,以判断是否需要继续执行递归调用,当条件满足时会终止函数的递归调用。

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

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

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),