PHP 8.6.0 Beta 3 is available for testing

Yaf_Registry::__construct

(Yaf >=1.0.0)

Yaf_Registry::__constructConstructor of Yaf_Registry

Descrizione

privatefunction Yaf_Registry::__construct()

The constructor is private: Yaf_Registry implements the singleton pattern and cannot be instantiated directly. Use the static methods to read and write registry entries.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

No value is returned.

Esempi

Example #1 Yaf_Registry::__construct() example

The constructor is private, so direct instantiation is rejected:

<?php
$registry = new Yaf_Registry();
?>

Il precedente esempio visualizzerà qualcosa simile a:

PHP Fatal error:  Uncaught Error: Call to private Yaf_Registry::__construct() from invalid context

Example #2 Using Yaf_Registry through its static methods

<?php
Yaf_Registry::set("version", Yaf_Application::app()->getConfig()->application->version);
var_dump(Yaf_Registry::get("version"));
?>

Il precedente esempio visualizzerà qualcosa simile a:

string(7) "1.0.0.1"

Vedere anche:

add a note

User Contributed Notes

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