検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 75 for toArray (0.004 sec.)
Converts the collection to an array 9752
« Ds\Collection::isEmpty Hashable » PHP Manual Collection Converts the collection to an array Ds ... \Collection::toArray (PECL ds >= 1.0.0) Ds\Collection::toArray — Conver ... on to an array 説明 abstract public Ds\Collection::toArray (): array Converts the collection to an array . 注 ... ame order as the collection. 例 例1 Ds\Collection::toArray() example <?php $collection = new \ Ds \ Vector ([ ... 1 , 2 , 3 ]); var_dump ( $collection -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ds-collection.toarray.html - [similar]
Converts the pair to an array 9752
« Ds\Pair::jsonSerialize Set » PHP Manual Pair Converts the pair to an array Ds\Pair::toArray (P ... ECL ds >= 1.0.0) Ds\Pair::toArray — Converts the pair to an array 説明 public Ds\Pai ... r::toArray (): array Converts the pair to an array . 注意 : C ... ues in the same order as the pair. 例 例1 Ds\Pair::toArray() example <?php $pair = new \ Ds \ Pair ( "a" , 1 ... ); var_dump ( $pair -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ds-pair.toarray.html - [similar]
Converts the stack to an array 9752
« Ds\Stack::push Queue » PHP Manual Stack Converts the stack to an array Ds\Stack::toArray (PECL ... ds >= 1.0.0) Ds\Stack::toArray — Converts the stack to an array 説明 public Ds\St ... ack::toArray (): array Converts the stack to an array . 注意 : ... s in the same order as the stack. 例 例1 Ds\Stack::toArray() example <?php $stack = new \ Ds \ Stack ([ 1 , 2 ... , 3 ]); var_dump ( $stack -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ds-stack.toarray.html - [similar]
Converts the deque to an array 9697
« Ds\Deque::sum Ds\Deque::unshift » PHP Manual Deque Converts the deque to an array Ds\Deque::toArray ... Array (PECL ds >= 1.0.0) Ds\Deque::toArray — Converts the deque to an array 説明 public Ds\De ... que::toArray (): array Converts the deque to an array . 注意 : ... s in the same order as the deque. 例 例1 Ds\Deque::toArray() example <?php $deque = new \ Ds \ Deque ([ 1 , 2 ... , 3 ]); var_dump ( $deque -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ds-deque.toarray.html - [similar]
Converts the queue to an array 9697
« Ds\Queue::push PriorityQueue » PHP Manual Queue Converts the queue to an array Ds\Queue::toArray ... ay (PECL ds >= 1.0.0) Ds\Queue::toArray — Converts the queue to an array 説明 public Ds\Qu ... eue::toArray (): array Converts the queue to an array . 注意 : ... s in the same order as the queue. 例 例1 Ds\Queue::toArray() example <?php $queue = new \ Ds \ Queue ([ 1 , 2 ... , 3 ]); var_dump ( $queue -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ds-queue.toarray.html - [similar]
Converts the set to an array 9697
« Ds\Set::sum Ds\Set::union » PHP Manual Set Converts the set to an array Ds\Set::toArray (PECL ... ds >= 1.0.0) Ds\Set::toArray — Converts the set to an array 説明 public Ds\Set: ... :toArray (): array Converts the set to an array . 注意 : Ca ... alues in the same order as the set. 例 例1 Ds\Set::toArray() example <?php $set = new \ Ds \ Set ([ 1 , 2 , 3 ... ]); var_dump ( $set -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ds-set.toarray.html - [similar]
Converts the vector to an array 9697
« Ds\Vector::sum Ds\Vector::unshift » PHP Manual Vector Converts the vector to an array Ds\Vecto ... r::toArray (PECL ds >= 1.0.0) Ds\Vector::toArray — Converts t ... he vector to an array 説明 public Ds\Vector::toArray (): array Converts the vector to an array . 注意 : ... in the same order as the vector. 例 例1 Ds\Vector::toArray() example <?php $vector = new \ Ds \ Vector ([ 1 , ... 2 , 3 ]); var_dump ( $vector -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ds-vector.toarray.html - [similar]
固定長配列から PHP の配列を返す 9572
« SplFixedArray::setSize SplFixedArray::valid » PHP Manual SplFixedArray 固定長配列から PHP の配 ... 列を返す SplFixedArray::toArray (PHP 5 >= 5.3.0, PHP 7, PHP 8) SplFixedArray::toAr ... 配列から PHP の配列を返す 説明 public SplFixedArray::toArray (): array 固定長配列から PHP の配列を返します。 パ ... 内容の PHP の配列を返します。 例 例1 SplFixedArray::toArray() の例 <?php $fa = new SplFixedArray ( 3 ); $fa [ ... 0 ] = 0 ; $fa [ 2 ] = 2 ; var_dump ( $fa -> toArray ()); ?> 上の例の出力は以下となります。 array(3) { ...
https://man.plustar.jp/php/splfixedarray.toarray.html - [similar]
Converts the queue to an array 9461
« Ds\PriorityQueue::push var_representation » PHP Manual PriorityQueue Converts the queue to an ... array Ds\PriorityQueue::toArray (PECL ds >= 1.0.0) Ds\PriorityQueue::toArray — Con ... he queue to an array 説明 public Ds\PriorityQueue::toArray (): array Converts the queue to an array . 注意 : ... same order as the queue. 例 例1 Ds\PriorityQueue::toArray() example <?php $queue = new \ Ds \ PriorityQueue ... $queue -> push ( "c" , 10 ); var_dump ( $queue -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ds-priorityqueue.toarray.html - [similar]
Converts the map to an array 9336
« Ds\Map::sum Ds\Map::union » PHP Manual Map Converts the map to an array Ds\Map::toArray (PECL ... ds >= 1.0.0) Ds\Map::toArray — Converts the map to an array 説明 public Ds\Map: ... :toArray (): array Converts the map to an array . 警告 Maps ... alues in the same order as the map. 例 例1 Ds\Map::toArray() example <?php $map = new \ Ds \ Map ([ "a" => 1 ... , "b" => 2 , "c" => 3 , ]); var_dump ( $map -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになりま ...
https://man.plustar.jp/php/ds-map.toarray.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT