Weakref::releaseReleases a previously acquired reference Beschreibung
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. Parameter-ListeDiese Funktion hat keine Parameter. Rückgabewerte
Returns Beispiele
Beispiel #1 Weakref::release example
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe: Unsetting o1... Unsetting o2... Destroying object! Siehe auch
|