略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Threaded::pop

2024-05-12

Threaded::pop

(PECL pthreads >= 2.0.0)

Threaded::pop操作

说明

public Threaded::pop(): bool

弹出对象属性表中的最后一项数据

返回值

对象属性表中最后一项数据

范例

示例 #1 弹出对象属性表中的最后一项数据

<?php
$safe 
= new Threaded();

while (
count($safe) < 10)
    
$safe[] = count($safe);

var_dump($safe->pop());
?>

以上例程会输出:

int(9)
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/threaded.pop.php

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