PHP | Ds\向量移位()函数
Ds\Vector::shift()函数是PHP中的一个内置函数,用于从向量中删除第一个元素并返回它。
句法:
mixed public Ds\Vector::shift( void )
参数:此函数不接受任何参数。
返回值:此函数返回索引 0 处的值。
异常:如果向量为空,此函数将抛出UnderflowException 。
下面的程序说明了PHP中的Ds\Vector::shift()函数:
方案一:
shift());
?>
输出:
First element in the vector:
string(5) "geeks"
方案二:
shift());
var_dump($vect->shift());
var_dump($vect->shift());
var_dump($vect->shift());
?>
输出:
int(1)
int(2)
int(3)
int(4)
参考: http: PHP。 PHP