PHP Delete array elements sample share _php tutorial

Source: Internet
Author: User
PHP deletes the array elements in a specific way:

1. Using the Unset () method:
Copy the Code code as follows:
$a =array ("Red", "green", "blue", "yellow");
Count ($a); Get 4
unset ($a [1]); Delete the second element
Count ($a); Get 3
echo $a [2]; There are only three elements in the array, and I wanted to get the last element, but I got blue,
echo $a [1]; No value
?>

Cons: After deleting an element in an array, the number of elements in the array (with count () is changed, but the array subscript is not rearranged, and the corresponding value must be manipulated by removing the key from the array element before PHP.

2. Using the Array_splice () method:
Copy the Code code as follows:
$a =array ("Red", "green", "blue", "yellow");
Count ($a); Get 4
Array_splice ($a, 1, 1); Delete the second element
Count ($a); Get 3
echo $a [2]; Get Yellow
echo $a [1]; Get Blue
?>

This program is relative to the previous one, and you can see that array_splice () not only removes the element, but also rearrange the elements so that there will be no null values in the middle of each element of the array!

http://www.bkjia.com/PHPjc/825228.html www.bkjia.com true http://www.bkjia.com/PHPjc/825228.html techarticle How to delete array elements in PHP: 1. Using the Unset () method: Copy the Code code as follows: PHP $a =array ("Red", "green", "blue", "yellow"), count ($a);//Get 4 unset ($a [1 ]); Delete First ...

  • 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.