PHP Doku:: Beispiele - chdb.examples.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteConstant hash databaseBeispiele

Ein Service von Reinhard Neidl - Webprogrammierung.

Constant hash database

<<Vordefinierte Konstanten

The chdb class>>

Beispiele

Beispiel #1 Creating a chdb file

<?php

$data 
= array(
    
'key1' => 'value1',
    
'key2' => 'value2',
    
// ...
);
chdb_create('data.chdb'$data);

?>

The above example will generate a chdb file named data.chdb and containing the key-value pairs defined in $data.

Beispiel #2 Loading and looking up a chdb file

<?php

$chdb 
= new chdb('data.chdb');
$value1 $chdb->get('key1');
$value2 $chdb->get('key2');

echo 
$value1PHP_EOL;
echo 
$value2PHP_EOL;

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

value1
value2

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",...)