WeakMap::offsetExists

(PHP 8)

WeakMap::offsetExistsChecks whether a certain object is in the map

Descripción

publicWeakMap::offsetExists(object$object): bool

Checks whether the passed object is referenced in the map.

Parámetros

object

Object to check for.

Valores devueltos

Returns true if the object is contained in the map, false otherwise.

To Top