Ds \ Pair::__construct()函数是PHP中的一个内置函数,用于创建新实例。
用法:
public Ds\Pair::__construct( $key, $value )
参数:该函数接受上述和以下描述的两个参数:
- $key:此参数保存对元素的键。
- $value:此参数保存对元素的值。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的Ds \ Pair::__construct()函数:
程序1:
<?php
// PHP program to illustrate the
// Ds\Pair::__construct() function
// Declare a new pair
$pair = new \Ds\Pair();
// Display the pair elements
print_r($pair);
// Creating another pair
$pair = new \Ds\pair(
["1", "2", "3"],
["Geeks", "for", "Geeks"]
);
// Display the pair elements
print_r($pair);
?>
输出:
Ds\Pair Object ( [key] => [value] => ) Ds\Pair Object ( [key] => Array ( [0] => 1 [1] => 2 [2] => 3 ) [value] => Array ( [0] => Geeks [1] => for [2] => Geeks ) )
程序2:
<?php
// PHP program to illustrate the
// Ds\Pair::__construct() function
// Creating a pair
$pair = new \Ds\pair(
["a", "b", "c"],
["10", "2", "30"]
);
// Display the pair elements
var_dump($pair);
?>
输出:
object(Ds\Pair)#1 (2) { ["key"]=> array(3) { [0]=> string(1) "a" [1]=> string(1) "b" [2]=> string(1) "c" } ["value"]=> array(3) { [0]=> string(2) "10" [1]=> string(1) "2" [2]=> string(2) "30" } }
参考: https://www.php.net/manual/en/ds-pair.construct.php
相关用法
- d3.js d3.mean()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- d3.js d3.sum()用法及代码示例
- CSS rgb()用法及代码示例
- d3.js d3.rgb()用法及代码示例
- d3.js d3.map.get()用法及代码示例
- d3.js d3.max()用法及代码示例
- d3.js d3.lab()用法及代码示例
- PHP Ds\Set add()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- p5.js hue()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | Ds\Pair __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。