当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Pair __construct()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | Ds\Pair __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。