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


PHP Ds\Pair copy()用法及代碼示例


Ds \ Pair::copy()函數是PHP中的一個內置函數,用於返回Pair元素的副本。

用法:

Ds\Pair Ds\Pair::copy( void )

參數:該函數不接受任何參數。


返回值:此函數返回pair元素的淺拷貝。

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

程序1:

<?php  
  
// Create new Pair 
$pair = new \Ds\Pair("G", "GeeksforGeeks");  
  
// Display the pair element  
print_r($pair);  
  
// Use copy() function  
$pair->copy();  
  
echo "Copied pair elements:\n"; 
  
// Display the pair element  
print_r($pair);  
  
?> 
輸出:
Ds\Pair Object
(
    [key] => G
    [value] => GeeksforGeeks
)
Copied pair elements:
Ds\Pair Object
(
    [key] => G
    [value] => GeeksforGeeks
)

程序2:

<?php  
  
// Create new Pair 
$pair = new \Ds\Pair(["G", "GeeksforGeeks"], [1, 2]);  
  
// Display the pair element  
var_dump($pair);  
  
// Use copy() function  
$pair->copy();  
  
echo "Copied pair elements:\n"; 
  
// Display the pair element  
var_dump($pair);  
  
?> 
輸出:
object(Ds\Pair)#1 (2) {
  ["key"]=>
  array(2) {
    [0]=>
    string(1) "G"
    [1]=>
    string(13) "GeeksforGeeks"
  }
  ["value"]=>
  array(2) {
    [0]=>
    int(1)
    [1]=>
    int(2)
  }
}
Copied pair elements:
object(Ds\Pair)#1 (2) {
  ["key"]=>
  array(2) {
    [0]=>
    string(1) "G"
    [1]=>
    string(13) "GeeksforGeeks"
  }
  ["value"]=>
  array(2) {
    [0]=>
    int(1)
    [1]=>
    int(2)
  }
}

參考: https://www.php.net/manual/en/ds-pair.copy.php



相關用法


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