PHP 8.5.10 Released!

Yaf_Registry::get

(Yaf >=1.0.0)

Yaf_Registry::getRetrieve an item from registry

Description

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

Retrieves a value from the registry.

Parameters

name

The name of the registry entry.

Return Values

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

Examples

Example #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;
    }
}
?>

See Also

add a note

User Contributed Notes

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