Re-indexing after unset elements in the PHP Array

Source: Internet
Author: User
After unset is used in php to delete an element, the array index is not re-created because the index is not re-created. If you continue to use the index after unset, an error is returned. In this case, you can use array_values to re-create the array index. $ Arrarray (1, 2, 4); unset ($ arr [1]); echo $ array [1]; errorUndefinedoffsetprint_r ($ arr );

After unset is used in php to delete an element, the array index is not re-created because the index is not re-created. If you continue to use the index after unset, an error is returned. In this case, you can use array_values to re-create the array index. $ Arr = array (1, 2, 4); unset ($ arr [1]); echo $ array [1]; // error Undefined offsetprint_r ($ arr );//

After unset is used in php to delete elements, the array index is not rebuilt.

Because the index is not re-created, an error is reported when you continue to use the index after unset.array_valuesRe-create an array index.

$ Arr = array (1, 2, 4); unset ($ arr [1]); echo $ array [1]; // error Undefined offsetprint_r ($ arr ); // The output is as follows/** Array ([0] => 1 [2] => 3 [3] => 4) **/$ arr = array_values ($ arr ); print_r ($ arr); // The output is as follows/** Array ([0] => 1 [1] => 3 [2] => 4 )**/
Reference
  • Http://stackoverflow.com/questions/5943149/rebase-array-keys-after-unsetting-elements

Original article address: Re-indexing after unset elements in the PHP array. Thanks to the original author for sharing.

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.