pht\Vector::size

(PECL pht >= 0.0.1)

pht\Vector::sizeGets the size of the vector

说锟斤拷

public pht\Vector::size ( void ) : int

Returns the current size of the vector. This operation requires a pht\Vector's mutex lock to be held if it is being used by multiple threads.

锟斤拷锟斤拷

锟剿猴拷锟斤拷没锟叫诧拷锟斤拷锟斤拷

锟斤拷锟斤拷值

The size of the vector.

锟斤拷锟斤拷

Example #1 Getting a vector's size

<?php

use pht\Vector;

$vector = new Vector();

$vector[] = 1;
$vector[] = 2;
$vector[] = 3;

var_dump($vector->size());

锟斤拷锟斤拷锟斤拷锟教伙拷锟斤拷锟斤拷锟�

int(3)