php clear(),PHP Ds\Collection clear()用法及代码示例
Ds \ Collection::clear()函數(shù)是PHP中的內(nèi)置函數(shù),用于從集合中刪除所有值。
用法:
Ds\Collection::clear( void )
參數(shù):該函數(shù)不接受任何參數(shù)。
返回值:該函數(shù)不返回任何值。
以下示例程序旨在說(shuō)明PHP中的Ds \ Collection::clear()函數(shù):
范例1:
// Create a collection
$collection = new \Ds\Vector([1, 2, 3, 4, 5, 6]);
// Display the collection element
print_r($collection);
// Use clear() function to remove elements
$collection->clear();
// Display the collection element
print_r($collection);
?>
輸出:
Ds\Vector Object (
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
[5] => 6
)
Ds\Vector Object (
)
范例2:
// Create a collection
$collection = new \Ds\Vector([10, 15, 21, 13, 16, 18]);
// Display the collection element
var_dump($collection);
// Use clear() function to remove elements
$collection->clear();
// Display the collection element
var_dump($collection);
?>
輸出:
object(Ds\Vector)#1 (6) {
[0]=> int(10)
[1]=> int(15)
[2]=> int(21)
[3]=> int(13)
[4]=> int(16)
[5]=> int(18)
}
object(Ds\Vector)#1 (0) {
}
總結(jié)
以上是生活随笔為你收集整理的php clear(),PHP Ds\Collection clear()用法及代码示例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 在php storm中怎么搭建环境,Ph
- 下一篇: java io 文件是否存在,代码实例J