update : 2015.11.03
php.shukuma.com검색:
|
QuickHashIntSet::delete(PECL quickhash >= Unknown) QuickHashIntSet::delete — This method deletes an entry from the set 설명
public bool QuickHashIntSet::delete
( int
$key
)This method deletes an entry from the set, and returns whether the entry was deleted or not. Associated memory structures will not be freed immediately, but rather when the set itself is freed. 인수
반환값
예제
Example #1 QuickHashIntSet::delete() example
<?php 위 예제의 출력 예시: bool(false) bool(true) bool(true) bool(false) bool(false) |