Example analysis of common functions for adding and deleting units in PHP arrays, array example analysis_PHP tutorial

WBOY
Release: 2016-07-13 10:06:24
Original
812 people have browsed it

Example analysis of common functions for adding and deleting units in PHP arrays, array example analysis

This article analyzes common functions for adding and deleting units in PHP arrays through examples. Share it with everyone for your reference. The specific analysis is as follows:

<&#63;php
header("Content-type:text/html;charset=utf-8");
$arr = array("a"=>"Horse","b"=>"Cat","c"=>"Dog");
array_push($arr,"hello","world");
//array_push将一个或多个单元压入到数组末尾
print_r($arr);
echo "<br />";

//array_pop():删除数组的最后一个单元
array_pop($arr);
print_r($arr);
echo "<br />";

//array_shift():删除数组的第一个单元
array_shift($arr);
print_r($arr);
echo "<br />";

//array_unshift():在数组开头添加一个或多个单元
array_unshift($arr,"Horse");
print_r($arr);
&#63;>
Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/959119.htmlTechArticleExample analysis of common functions for adding and deleting units in php arrays, array example analysis This article analyzes adding and deleting php arrays with examples Commonly used functions of the unit. Share it with everyone for your reference. Tool...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!