Home  >  Article  >  Backend Development  >  PHP array function knowledge summary_php skills

PHP array function knowledge summary_php skills

WBOY
WBOYOriginal
2016-05-16 08:59:463644browse

This article shares the basic knowledge of PHP array functions for your reference. The specific content is as follows

Array array is a very important data type. Compared to other data types, it is more like a structure, and this structure can store a series of values. Arrays can store many values ​​in a single variable name, and a value can be accessed by referencing a subscript.
In PHP, there are three array types:
indexed array - array with numeric index
Associative array - array with specified keys
Multidimensional array - an array containing one or more arrays

1. Create an array

array(key => value)

1. Create an index array

Use the array() function to declare an array. PHP is a weakly typed language that is relatively flexible and convenient. It can also be the element value of the array directly. There is no need for a key value. The index is automatically assigned (the index starts from 0).
example:

array("1" => "Baidu","2" => "Alibaba","3" => "Tencent");
Or not using key values:
array("Baidu","Alibaba","Tencent");
Of course it can also be written as:
$arr[0] = "Baidu";
$arr[1] = "Ali";
$arr[2] = "Tencent";

2. Create an associative array

Associative arrays are similar to index arrays, except that associative arrays cannot only be numbers like the key names of index arrays. They can be numerical values, strings, and mixed forms. The basis for determining whether an array is an associative array is: Array Whether there is a key name in that is not a number. No, it's related.

array("Robin Li" => "Baidu","Jack Ma" => "Alibaba","Ma Huateng" => "Tencent");

3. Multidimensional array

array(array(),array()) two-dimensional array

Get the length of the array - count() function

 //The result returns 3 (indicating that there are three elements in the array)

2. Traverse the array

Output the value of the element in the array. For index arrays, for and foreach are commonly used; for associative arrays, foreach is commonly used. Use the print_r() function to print the results after the loop, or var_dump().

1. Traverse the index array

Traverse and output all values ​​of the index array, you can use for, foreach(array_expression as value), foreach(arrayexpressionaskey => $value) loop, as follows:

Use for loop

"; //Newline display
print_r($data);

The print result is displayed as follows:
Array
(
[0] => Baidu
[1] => Ali
[2] => Tencent
)
Using foreach loop

"; //Newline display
print_r($data);//The print result is the same as above

Note: There is an array symbol [] after data. Why?

2. Traverse associative array

Traverse and output all values ​​of the associative array, you can use the foreach (array_expression as key=>value) loop, as follows:

 "Baidu","Jack Ma" => "Alibaba","Ma Huateng" => "Tencent");
foreach ($arr as $key => $value) {
  $data[$key] = $value;
}
echo "
"; //Newline display
print_r($data);

The print result shows:

Array
(
  [Robin Li] => Baidu
  [Jack Ma] => Ali
  [Ma Huateng] => Tencent
)

Did you notice? At this time, what is after data is [$key]? instead of []
One is a numeric associative array and the other is a numeric index array,

3. Add and delete elements of the array

Add
to the end of the array element The array_push(array,value1,value2…) function adds one or more elements (push) to the end of the array of the first parameter and returns the length of the new array.
This function is equivalent to multiple calls to array[]=value.

"; //Newline display
print_r($arr);
//Print result shows:
Array
(
  [0] => Baidu
  [1] => Ali
  [2] => Tencent
  [3] => Zhihu
  [4] => Weibo
)

Add at the beginning of the array element
The array_unshift(array,value1,value2,value3…) function is used to insert new elements into the array. The values ​​of the new array will be inserted at the beginning of the array.

"; //Newline display
print_r($arr);
//Print result shows:
Array
(
  [0] => Zhihu
  [1] => Weibo
  [2] => Baidu
  [3] => Ali
  [4] => Tencent
)

Delete at the end of the array element
The array_pop(array) function removes the last element from the array.

"; //Newline display
print_r($arr);
The print result shows:
Array
(
  [0] => Baidu
  [1] => Ali
)

Delete at the beginning of the array element
The array_shift(array) function deletes the first element in the array and returns the value of the deleted element.

"; //Newline display
print_r($arr);
The print result shows:
Array
(
  [0] => Ali
  [1] => Tencent
)

Remove duplicate values ​​from the array
The array_unique(array) function removes duplicate values ​​from an array and returns the resulting array.

";
print_r($data);
The print result shows:
Array
(
  [0] => Baidu
  [1] => Ali
  [2] => Tencent
  [4] => Weibo
)

4. Positioning array elements

Search for values ​​present in the array
in_array(search,array,type) checks whether the specified value exists in the array.
Returns true if the given value search exists in the array array. If the third parameter is set to true, the function returns true only if the element exists in the array and has the same data type as the given value. If the parameter is not found in the array, the function returns false.


Retrieve a value from the array based on conditions: array_slice(array,start,length,preserve)
start is required. numerical value. Specifies the starting position of the element to be retrieved. 0 = first element.
If the value is set to a positive number, it will be taken from front to back.
If the value is set to a negative number, the absolute value of start is taken from back to front. -2 means start from the second to last element of the array.

length Optional. numerical value. Specifies the length of the returned array.
If the value is set to an integer, that number of elements is returned.
If this value is set to a negative number, the function will terminate fetching this far from the end of the example array.
If this value is not set, all elements starting from the position set by the start parameter to the end of the array are returned.

";
print_r($data);
The print result shows:
Array
(
  [0] => Baidu
  [1] => Ali
  [2] => Tencent
  [3] => Zhihu
)

array_splice(array,start,length,array) function removes the selected element from an array and replaces it with a new element. This function will also return the array containing the removed elements.

";
print_r($arr1);
The print result shows:
Array
(
  [0] => Zhihu
  [1] => Weibo
  [2] => Tencent
)

5. Array merging, splitting and comparison

The array_merge() function merges arrays together and returns a combined array. The resulting array starts with the first input array parameter and is appended in the order in which subsequent array parameters appear.

";
print_r($data);
The print result shows:
Array
(
  [0] => Baidu
  [1] => Ali
  [2] => Tencent
  [3] => Zhihu
  [4] => Weibo
)

Append array recursively
The array_merge_recursive() function is the same as array_merge() and can merge two or more arrays together to form a combined array. The difference between the two is that the function takes a different approach when a key in an input array is already present in the result array. array_merge() overwrites the previously existing key/value pairs and replaces them with the key/value pairs in the current input array, while array_merge_recursive() merges the two values ​​together to form a new array with the original keys as an array name. Its form is:

$arr= array('one'=>'C', 'one'=>'B');
$arr1= array('three'=>'1', 'one'=>'2');
$arr2= array_merge_recursive($arr, $arr1);
echo "
";
print_r($arr2);
The print result shows:
Array
(
  [one] => Array
    (
      [0] => B
      [1] => 2
    )

  [three] => 1
)

Merge two arrays
The array_combine() function will generate a new array, which consists of a set of submitted keys and corresponding values, in the form:

$arr= array('A', 'B');
$arr1= array('1', '2');
$arr2= array_combine($arr, $arr1);
echo "
";
print_r($arr2);
The print result shows:
Array
(
  [A] => 1
  [B] => 2
)

Find the intersection of arrays
The array_intersect() function returns a key-preserved array consisting only of values ​​that appear in the first array and appear in every other input array. Its form is as follows:

$arr= array('A', 'B', 'C', 'D');
$arr1= array('A', 'B', 'E');
$arr2= array('A', 'F', 'D');
$arr3= array_intersect($arr, $arr1, $arr2);
echo "
";
print_r($arr3);
The print result shows:
Array
(
  [0] => A
)

Note: array_intersect() will consider two elements equal only if they have the same data type.

Find the intersection of associative arrays
array_intersect_assoc() is basically the same as array_intersect(), except that it also considers the keys of the array in the comparison. Therefore, only key/value pairs that appear in the first array and also appear in all other input arrays are returned in the result array. Its form is as follows:

$arr= array('a'=>'A', 'b'=>'B', 'c'=>'C', 'd'=>'D');
$arr1= array('a'=>'A', 'c'=>'B', 'E');
$arr2= array('a'=>'A', 'b'=>'F', 'd'=>'B');
$arr3= array_intersect_assoc($arr, $arr1, $arr2);
echo "
";
print_r($arr3);
The print result shows:
Array
(
  [a] => A
)

Find the difference set of associative arrays
The function array_diff_assoc() is basically the same as array_diff(), except that it also takes into account the keys of the arrays when comparing, so key/value pairs that only appear in the first array and not in other input arrays will be returned. in the result array. Its form is as follows:

$arr= array('a'=>'A', 'b'=>'B', 'c'=>'C', 'd'=>'D');
$arr1= array('a'=>'A', 'b'=>'B', 'e'=>'E');
$arr3= array_diff_assoc($arr, $arr1);
echo "
";
print_r($arr3);
The print result shows:
Array
(
  [c] => C
  [d] => D
)

Other useful array functions
Returns a random set of keys The array_rand() function will return one or more keys in an array. Its form is:

$arr= array('a'=>'A', 'b'=>'B', 'c'=>'C', 'd'=>'D');
$arr1= array_rand($arr, 2);
echo "
";
print_r($arr1);
The print result shows:
 Array
(
  [0] => c
  [1] => d
) //The results displayed are different every time you refresh

Sum the values ​​in the array
The array_sum() function adds all the values ​​in the array together and returns the final sum, which has the following form:

$arr= array('A', 32, 12, 'B');
$count= array_sum($arr);
echo "
";
print_r($count);

The print result shows:
44

If the array contains other data types (such as strings), these values ​​will be ignored.

Divide array
The array_chunk() function decomposes the array into a multi-dimensional array, which consists of multiple arrays containing size elements. Its form is as follows:

$arr= array('A', 'B', 'C', 'D');
$arr1= array_chunk($arr, 2);
echo "
";
print_r($arr1);

The print result shows:

Array
(
  [0] => Array
    (
      [0] => A
      [1] => B
    )

  [1] => Array
    (
      [0] => C
      [1] => D
    )

)

The functions that can be called when processing arrays are

array_filter(*array*,*callbackfunction*);
array_intersect_uassoc(*array1*,*array2*,*array3*...,*myfunction*)
array_intersect_ukey(*array1*,*array2*,*array3*...,*myfunction*)
array_reduce(*array*,*myfunction*,*initial*)
array_walk(*array*,*myfunction*,*userdata*...)
……

The above is the entire content of this article. I hope it will be helpful to everyone in learning PHP programming.

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