Home > php教程 > php手册 > body text

php数组添加与删除单元的常用函数实例分析,数组实例分析

WBOY
Release: 2016-06-13 09:14:26
Original
790 people have browsed it

php数组添加与删除单元的常用函数实例分析,数组实例分析

本文实例分析了php数组添加与删除单元的常用函数。分享给大家供大家参考。具体分析如下:

<&#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

希望本文所述对大家的php程序设计有所帮助。

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template