(PECL yac >= 1.0.0)
Yac::__get — Retrieve a value using property syntax
Retrieves a value from the cache, invoked when reading a property of a
Yac instance: $yac->foo is
equivalent to $yac->get("foo").
keyThe property name, used as the cache key.
The cached value on a hit, null when the key is not present in the
cache.
Nota:
Unlike Yac::get(), property syntax cannot distinguish a stored
nullfrom a missing key, and only supports single keys.
Example #1 Yac::__get() example
<?php
$yac = new Yac();
$yac->set("foo", "bar");
var_dump($yac->foo); // string(3) "bar"
var_dump($yac->missing); // NULL
?>