downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

TokyoTyrantIterator::current> <TokyoTyrantIterator
[edit] Last updated: Fri, 17 May 2013

view this page in

TokyoTyrantIterator::__construct

(PECL tokyo_tyrant >= 0.2.0)

TokyoTyrantIterator::__constructConstruct an iterator

Beschreibung

public TokyoTyrantIterator::__construct ( mixed $object )

Construct a new TokyoTyrantIterator object. One connection can have multiple iterators but it is not quaranteed that all items are traversed in that case. object parameter can be either an of instance TokyoTyrant or TokyoTyrantTable.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Throws an exception if iterator initialization fails.

Beispiele

Beispiel #1 TokyoTyrantIterator::__construct() example

<?php
/* Connect to a table database */
$tt = new TokyoTyrantTable("localhost"1979);

/* Passing null to put generates a new uid */
$index $tt->put(null, array("column1" => "some data""column2" => "more data"));

/* Construct an iterator */
$it = new TokyoTyrantIterator($tt);

foreach (
$it as $value) {
    
var_dump($value);
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

array(2) {
  ["column1"]=>
  string(9) "some data"
  ["column2"]=>
  string(9) "more data"
}

Siehe auch



add a note add a note User Contributed Notes TokyoTyrantIterator::__construct - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites