Converts the pair to an array

Ds\Pair::toArray

(PECL ds >= 1.0.0)

Ds\Pair::toArray Converts the pair to an array

說明

public Ds\Pair::toArray(): array

Converts the pair to an array.

注意:

Casting to an array is not supported yet.

參數

此函式沒有參數。

返回值

An array containing all the values in the same order as the pair.

範例

示例 #1 Ds\Pair::toArray() example

<?php
$pair 
= new \Ds\Pair("a"1);

var_dump($pair->toArray());
?>

以上例程的輸出類似於:

array(2) {
  ["key"]=>
  string(1) "a"
  ["value"]=>
  int(1)
}

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *