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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。