php可以獲取數(shù)組第一個(gè)元素。php提供多種獲取方法:1、用array_shift()刪除數(shù)組第一個(gè)元素,并返回被刪除的元素,語(yǔ)法“array_shift(數(shù)組)”;2、用array_slice()截取數(shù)組,返回包含第一個(gè)元素的子數(shù)組,語(yǔ)法“array_slice(數(shù)組,0,1)”;3、用current()返回當(dāng)前元素,初始情況下返回第一元素,語(yǔ)法“current(數(shù)組)”。
本教程操作環(huán)境:windows7系統(tǒng)、PHP8.1版、DELL G3電腦
php可以獲取數(shù)組第一個(gè)元素。
php獲取數(shù)組第一個(gè)元素有多種方法:
方法1:使用array_shift() 函數(shù)
array_shift() 函數(shù)用于刪除數(shù)組中的第一個(gè)元素,并返回被刪除的第一個(gè)元素。
<?php header("Content-type:text/html;charset=utf-8"); $arr=array(10,12,20,25,24); echo "原數(shù)組:"; var_dump($arr); $res=array_shift($arr); echo "數(shù)組第一個(gè)元素為:".$res ; ?>
方法2:使用array_slice()函數(shù)
array_slice() 函數(shù)用來截取數(shù)組,也就是從數(shù)組中提取出一個(gè)片段
該函數(shù)可以從指定位置開始截取指定個(gè)數(shù)的數(shù)組元素。
返回值:返回截取后的子數(shù)組。
<?php header("Content-type:text/html;charset=utf-8"); $arr=array(10,12,20,25,24); echo "原數(shù)組:"; var_dump($arr); $res=array_slice($arr,0,1); echo "數(shù)組第一個(gè)元素為:" ; var_dump($res); ?>
方法3:使用current()函數(shù)
current()可以返回?cái)?shù)組當(dāng)前元素的值,初始情況下指向第一個(gè)元素。
<?php header("Content-type:text/html;charset=utf-8"); $arr=array(10,12,20,25,24); echo "原數(shù)組:"; var_dump($arr); echo "數(shù)組第一個(gè)元素為:".current($arr) ; ?>
推薦學(xué)習(xí):《PHP視頻教程》