略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: pht\Vector::shift

2024-05-02

pht\Vector::shift

(PECL pht >= 0.0.1)

pht\Vector::shiftShifts a value from the vector

说明

public pht\Vector::shift ( void ) : mixed

This method shifts a value from the front of a vector (in linear time). Shifting a value from an empty vector will result in an Error exception.

参数

此函数没有参数。

返回值

The value from the front of the vector.

范例

Example #1 Shifting a value from a vector

<?php

use pht\Vector;

$vector = new Vector();

$vector->push(1);
$vector[] = 2;

var_dump($vector->shift());

以上例程会输出:

int(1)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/pht-vector.shift.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3