Differences between unset and array_splice in PHP to delete elements in the array

Source: Internet
Author: User

If you want to delete an element from an array, you can use unset directly, but the index of the array will not be rearranged:

The code is as follows: Copy code

<? Php
$ Arr = array ('A', 'B', 'C', 'D ');
Unset ($ arr [1]);
Print_r ($ arr );
?>

The result is:

Array ([0] => a [2] => c [3] => d)

 
So how can we fill in the missing elements and re-index the array? The answer is array_splice ():

The code is as follows: Copy code

<? Php
$ Arr = array ('A', 'B', 'C', 'D ');
Array_splice ($ arr, 1, 1 );
Print_r ($ arr );
?>

The result is:

Array ([0] => a [1] => c [2] => d)

 
Delete special elements in an array

The code is as follows: Copy code

<? Php
$ Arr2 = array (1, 3, 5, 7, 8 );
Foreach ($ arr2 as $ key => $ value)
{
If ($ value = 3)
Unset ($ arr2 [$ key]);
}
Var_dump ($ arr2 );
?>

Add or delete an empty array

Instance:

The code is as follows: Copy code

<? Php
$ Array = ('a' => "abc", 'B' => "bcd", 'C' => "cde", 'D' => "def ", 'E' => "");
Array_filter ($ array );
Echo "<pre> ";
Print_r ($ array );
?>
Result:

Array (
[A] => abc
[B] => bcd
[C] => cde
[D] => def
)

Summary

If the array_splice () function is deleted, the index value of the array also changes.
If the unset () function is deleted, the index value of the array remains unchanged.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.