Horde_Core_HashTable_Vfs::getStream PHP Méthode

getStream() public méthode

Get data associated with a key(s).
public getStream ( mixed $keys ) : mixed
$keys mixed The key or an array of keys.
Résultat mixed The string/array on success (return type is the type of $keys); Horde_Stream objects are returned on success, false value(s) on failure.
    public function getStream($keys)
    {
        $this->_stream = true;
        $out = $this->get($keys);
        $this->_stream = false;
        return $out;
    }