PHP 8.6.0 Beta 3 is available for testing

Yaf_Registry::get

(Yaf >=1.0.0)

Yaf_Registry::getRetrieve an item from registry

Beschreibung

public static function Yaf_Registry::get(string $name): mixed

Retrieves a value from the registry.

Parameter-Liste

name

The name of the registry entry.

Rückgabewerte

The value stored under name, or null if there is no entry with that name.

Beispiele

Beispiel #1 Yaf_Registry::get() example

<?php
class IndexController extends Yaf_Controller_Abstract
{
    public function indexAction()
    {
        $redis = Yaf_Registry::get("redis");
        if ($redis === null) {
            throw new Exception("the redis connection is not registered");
        }

        $this->getView()->assign("visits", $redis->get("site:visits"));

        return true;
    }
}
?>

Siehe auch

add a note

User Contributed Notes

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