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