PHP 8.6.0 Beta 3 is available for testing

Yaf_Loader::__construct

(Yaf >=1.0.0)

Yaf_Loader::__constructThe constructor is private

Descrizione

private function Yaf_Loader::__construct()

Constructs a new loader. The constructor is private; Yaf_Loader is a singleton. Use Yaf_Loader::getInstance() to obtain the instance.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

No value is returned.

Esempi

Example #1 Obtaining the Yaf_Loader singleton

<?php
$app = new Yaf_Application(__DIR__ . "/conf/application.ini");

/* the constructor is private; use getInstance() instead */
$loader = Yaf_Loader::getInstance();
var_dump($loader instanceof Yaf_Loader);

/* instantiating directly raises an Error */
try {
    $loader = new Yaf_Loader();
} catch (Error $e) {
    echo $e->getMessage(), PHP_EOL;
}
?>

Il precedente esempio visualizzerà qualcosa simile a:

bool(true)
Call to private Yaf_Loader::__construct() from global scope

Vedere anche:

add a note

User Contributed Notes

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