(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrantQuery::valid — Vérifie la validité de l'élément courant
Vérifie si l'élément courant est valide. Fait parti de l'interface Iterator.
Cette fonction ne contient aucun paramètre.
Retourne TRUE
si l'élément courant est valide, FALSE
sinon.
Exemple #1 Exemple avec TokyoTyrantQuery iterator
<?php
/* Connexion à la base de données */
$tt = new TokyoTyrantTable("localhost", 1979);
/* Ajoute quelques lignes */
$tt->put(null, array("column1" => "some data", "column2" => "something here"));
$tt->put(null, array("column1" => "more data", "column2" => "best data this far"));
$tt->put(null, array("column1" => "again data", "column3" => "foobar here"));
$tt->put(null, array("column45" => "random data", "column2" => "something along the lines"));
$tt->put(null, array("column21" => "test data", "column2" => "generating.."));
$tt->put(null, array("column1" => "foobar data", "column2" => "value here"));
/* Récupère un nouvel objet de requête */
$query = $tt->getQuery();
/* Ajoute une condition de recherche */
$query->addCond("column2", TokyoTyrant::RDBQC_STROR, "something");
/* Parcours les résultats */
foreach ($query as $key => $value) {
echo "pk: $key, columns: ", count($value) ,"\n";
}
?>
L'exemple ci-dessus va afficher quelque chose de similaire à :
pk: 1, columns: 2 pk: 4, columns: 2