update : 2015.11.03
php.shukuma.com검색:
|
Weakref::release(PECL weakref >= 0.1.0) Weakref::release — Releases a previously acquired reference 설명
public bool Weakref::release
( void
)
Releases a previously acquired reference, potentially turning a strong reference back into a weak reference. The Weakref instance maintains an internal acquired counter to track outstanding strong references. If the call to Weakref::release() is successful, this counter will be decremented by one. Once this counter reaches zero, the strong reference is turned back into a weak reference. 인수이 함수는 인수가 없습니다. 반환값
Returns 예제
Example #1 Weakref::release() example
<?php 위 예제의 출력: Unsetting o1... Unsetting o2... Destroying object! |