Dutch PHP Conference 2025 - Call For Papers

The Yaf_Registry class

(Yaf >=1.0.0)

Вступ

All methods of Yaf_Registry declared as static, making it unversally accessible. This provides the ability to get or set any custom data from anyway in your code as necessary.

Короткий огляд класу

class Yaf_Registry {
/* Властивості */
static $_instance;
protected $_entries;
/* Методи */
private __construct()
public static del(string $name): void
public static get(string $name): mixed
public static has(string $name): bool
public static set(string $name, string $value): bool
}

Властивості

_instance

_entries

Зміст

add a note

User Contributed Notes

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