PHP 8.6.0 Beta 3 is available for testing

Yaf_Dispatcher::__construct

(Yaf >=1.0.0)

Yaf_Dispatcher::__constructYaf_Dispatcher constructor

Descrizione

private function Yaf_Dispatcher::__construct()

Yaf_Dispatcher implements the singleton pattern, so the constructor is private. Use Yaf_Dispatcher::getInstance() to retrieve the dispatcher instance, which is created by Yaf_Application.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Nessun valore viene restituito.

Esempi

Example #1 Yaf_Dispatcher is a singleton

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

// Yaf_Dispatcher implements the singleton pattern, so its constructor is
// private. Retrieve the instance with Yaf_Dispatcher::getInstance()
// instead of calling `new`.
$dispatcher = Yaf_Dispatcher::getInstance();

var_dump($dispatcher instanceof Yaf_Dispatcher);
?>

Il precedente esempio visualizzerà qualcosa simile a:

bool(true)

Vedere anche:

add a note

User Contributed Notes

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