當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\Map put()用法及代碼示例


Ds \ Map::put()函數是PHP中的內置函數,用於將鍵與值相關聯。

用法:

void public Ds\Map::put( $key, $value )

參數:該函數接受上述和以下描述的兩個參數:


  • $key:它用於按住鍵來關聯值。
  • $value:它用於保存鍵的值。

返回值:該函數不返回任何值。

以下示例程序旨在說明PHP中的Ds \ Map::put()函數:

程序1:

<?php  
  
// Declare a new map 
$map = new \Ds\Map(); 
  
$map->put("a", "Geeks"); 
$map->put("b", "for"); 
$map->put("c", "Geeks"); 
  
// Display output 
print_r($map); 
  
// Declare a new map 
$map = new \Ds\Map(); 
  
$map->put("a", "Computer"); 
$map->put("b", "Science"); 
$map->put("c", "Portal"); 
  
// Display output 
print_r($map); 
  
?>
輸出:
Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => a
            [value] => Geeks
        )

    [1] => Ds\Pair Object
        (
            [key] => b
            [value] => for
        )

    [2] => Ds\Pair Object
        (
            [key] => c
            [value] => Geeks
        )

)
Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => a
            [value] => Computer
        )

    [1] => Ds\Pair Object
        (
            [key] => b
            [value] => Science
        )

    [2] => Ds\Pair Object
        (
            [key] => c
            [value] => Portal
        )

)

程序2:

<?php  
  
// Declare a new map 
$map = new \Ds\Map(); 
  
$map->put("Geeks1", "computer"); 
$map->put("Geeks2", "science"); 
$map->put("Geeks3", 5); 
$map->put("Geeks3", 20); 
  
// Display result 
var_dump($map); 
  
?>
輸出:
object(Ds\Map)#1 (3) {
  [0]=>
  object(Ds\Pair)#2 (2) {
    ["key"]=>
    string(6) "Geeks1"
    ["value"]=>
    string(8) "computer"
  }
  [1]=>
  object(Ds\Pair)#3 (2) {
    ["key"]=>
    string(6) "Geeks2"
    ["value"]=>
    string(7) "science"
  }
  [2]=>
  object(Ds\Pair)#4 (2) {
    ["key"]=>
    string(6) "Geeks3"
    ["value"]=>
    int(20)
  }
}

參考: https://www.php.net/manual/en/ds-map.put.php



相關用法


注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Ds\Map put() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。