A classe WeakReference

(PHP 7 >= 7.4.0, PHP 8)

Introdução

Referências fracas permitem que o programador mantenha uma referência a um objeto que não impede que o objeto seja destruído. Eles são úteis para implementar estruturas como cache.

WeakReferences não podem ser serializadas.

Resumo da classe

final class WeakReference {
/* Métodos */
public __construct()
public static create(object $object): WeakReference
public get(): ?object
}

Exemplos de referência fraca

Exemplo #1 Uso básico de referência fraca

<?php
$obj
= new stdClass;
$weakref = WeakReference::create($obj);
var_dump($weakref->get());
unset(
$obj);
var_dump($weakref->get());
?>

O exemplo acima produzirá algo semelhante a:

object(stdClass)#1 (0) {
}
NULL

Índice

add a note add a note

User Contributed Notes 1 note

up
-31
Sandor Toth
4 years ago
You might consider to use WeakReference in your Container class. Don't forget to create the object into a variable and pass the variable to WeakReference::create() otherwise you going to ->get() null.

Consider as wrong solution, which returns null
<?php
/**
* @return App
*/
public static function app() : App
{
    if (!static::
$app) {
       static::
$app = WeakReference::create(new App());
    }

    return static::
$app->get();
}
?>

Consider as GOOD solution, which returns App instance
<?php
/**
* @return App
*/
public static function app() : App
{
    if (!static::
$app) {
      
$app = new App();
       static::
$app = WeakReference::create($app);
    }

    return static::
$app->get();
}
?>
To Top