PHP 8.4.26 Released!

The Yaf_Registry class

(Yaf >=1.0.0)

Giriş

Yaf_Registry is a global key-value store. All of its methods are static, which makes it universally accessible, and provides the ability to get or set any custom data from anywhere in your code as necessary.

It is typically used to hold objects initialized in the Bootstrap (a database connection, a logger, shared configuration) so that controllers, actions and plugins can retrieve them without passing them around.

Sınıf Sözdizimi

class Yaf_Registry {
/* Özellikler */
static $_instance;
protected $_entries;
/* Yöntemler */
privatefunction __construct()
public static function del(string $name): bool
public static function get(string $name): mixed
public static function has(string $name): bool
public static function set(string $name, mixed $value): bool
}

Özellikler

_instance

_entries

İçindekiler

+add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top