Blogger Information
Blog 51
fans 0
comment 1
visits 70589
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数组操作 array_push后压 array_pop后弹 array_unshift前压 array_shift前弹
呵呵哒
Original
647 people have browsed it

实例

<?php
$users = ['向军','小名'];
// 数组尾部压数据
// array_push($users,'李四');
// print_r($users);


//数组尾部弹数据
// $user =array_pop($users);

// print_r($users);

// 前面数组压数据
array_unshift($users,'校长');
//前面弹数据
array_shift($users);
print_r($users);

//统计
echo count($users);
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
  • 1
    2018-03-17 17:09:25