TokyoTyrant::getIterator

(No version information available, might only be in Git)

TokyoTyrant::getIteratorGet an iterator

Descrierea

public TokyoTyrant::getIterator ( ) : TokyoTyrantIterator

Gets an iterator for iterating all keys / values in the database.

Parametri

Această funcție nu are parametri.

Valorile întoarse

This method returns TokyoTyrantIterator object and throws TokyoTyrantException on failure.

Exemple

Example #1 TokyoTyrant::getIterator() example

<?php
$tt 
= new TokyoTyrant("localhost");
$it $tt->getIterator();

foreach (
$it as $k => $v) {

}
?>

A se vedea și

add a note add a note

User Contributed Notes

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