PHP Doku:: Returns the forward matching keys - tokyotyrant.fwmkeys.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische Datenbankerweiterungentokyo_tyrantThe TokyoTyrant classTokyoTyrant::fwmKeys

Ein Service von Reinhard Neidl - Webprogrammierung.

The TokyoTyrant class

<<TokyoTyrant::ext

TokyoTyrant::get>>

TokyoTyrant::fwmKeys

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrant::fwmKeysReturns the forward matching keys

Beschreibung

public array TokyoTyrant::fwmKeys ( string $prefix , int $max_recs )

Returns the forward matching keys from the database

Parameter-Liste

prefix

Prefix of the keys

max_recs

Maximum records to return

Rückgabewerte

Returns an array of matching keys. The values are not returned

Beispiele

Beispiel #1 TokyoTyrant::fwmKeys() example

<?php

$tt 
= new TokyoTyrant("localhost");

/* Create 20 macthing keys */
for ($i 0$i 20$i++) {
    
$tt->put("key_" $i"value_" $i);
}

/* Create 20 non-macthing keys */
for ($i 0$i 20$i++) {
    
$tt->put("something_" $i"data_" $i);
}

/* Get five matching keys */
var_dump($tt->fwmKeys("key_"5));
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

array(5) {
  [0]=>
  string(5) "key_5"
  [1]=>
  string(6) "key_14"
  [2]=>
  string(5) "key_6"
  [3]=>
  string(6) "key_15"
  [4]=>
  string(5) "key_7"
}


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)