Ds \ Pair::clear()函數是PHP中的內置函數,用於刪除該對中的所有值。
用法:
void Ds\Pair::clear( void )
參數:該函數不接受任何參數。
返回值:該函數不返回任何值。
以下示例程序旨在說明PHP中的Ds \ Pair::clear()函數:
程序:
<?php
// Create new pair
$pair = new \Ds\Pair("G", "GeeksforGeeks");
echo ("Original pair elements:\n");
// Display the pair elements
print_r($pair);
echo("Modified pair\n");
// Use clear() function to
// remove pair elements
$pair->clear();
// Display pair elements
print_r($pair);
?>
輸出:
Original pair elements: Ds\Pair Object ( [key] => G [value] => GeeksforGeeks ) Modified pair Ds\Pair Object ( )
參考: https://www.php.net/manual/en/ds-pair.clear.php
相關用法
- PHP DS\Map clear()用法及代碼示例
- p5.js clear()用法及代碼示例
- d3.js d3.map.clear()用法及代碼示例
- d3.js d3.set.clear()用法及代碼示例
- PHP Ds\Set clear()用法及代碼示例
- PHP ImagickDraw clear()用法及代碼示例
- PHP Ds\Stack clear()用法及代碼示例
- PHP Ds\Vector clear()用法及代碼示例
- PHP Gmagick clear()用法及代碼示例
- PHP Ds\Collection clear()用法及代碼示例
- PHP Imagick clear()用法及代碼示例
- PHP Ds\Queue clear()用法及代碼示例
- PHP Ds\PriorityQueue clear()用法及代碼示例
- PHP Ds\Deque clear()用法及代碼示例
- CSS clear屬性用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | Ds\Pair clear() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。