Blogger Information
Blog 13
fans 0
comment 0
visits 5502
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
array_splice() 增 改 删 查
安之若素
Original
645 people have browsed it

实例

<?php
//删
 $stu =array('id'=>6,'name'=>'xiaoli','age'=>29,'city'=>'厦门');
//返回删除的后面两元素
(array_splice($stu,2));
 //保留的二个元素
 print_r($stu);
 echo'<hr color="#FF0000">';
 //改
 $stu =array('id'=>6,'name'=>'xiaoli','age'=>29,'city'=>'厦门','学号'=>'2326');
(array_splice($stu,4,1,['李老师']));
 print_r($stu);
 echo'<hr color="#FF0000">';
 //增
 $stu =array('id'=>6,'name'=>'xiaoli','age'=>29,'city'=>'厦门','学号'=>'2326');
array_splice($stu,4,0,['password']);
 print_r($stu);
echo'<hr color="#FF0000">';
//查
$stu =array('id'=>6,'name'=>'xiaoli','age'=>29,'city'=>'厦门','学号'=>'2326');
print_r(array_splice($stu,2,1));
?>

运行实例 »

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

手抄:QQ图片20180424222314.jpg

Correction status:qualified

Teacher's comments:
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