在线文档教程
PHP
数据结构 | Data Structures

Ds\Pair::toArray

Ds\Pair::toArray

(PECL ds >= 1.0.0)

Ds \ Pair :: toArray - 将该对转换为数组。

Description

public array Ds\Pair::toArray ( void )

将该对转换为数组。

注意:现在还不支持投射到数组。

Parameters

该功能没有参数。

Return Values

包含与该对相同顺序的所有值的数组。

Examples

Example #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) }

← Ds\Pair::jsonSerialize

Set →

© 1997–2017 The PHP Documentation Group

根据知识共享署名许可证v3.0或更高版本授权。