splitice / kyototycoon
There is no license information available for the latest version (dev-master) of this package.
implementation of the Kyoto Tycoon client in PHP
dev-master
2014-05-27 17:29 UTC
Requires
- php: >=5.3
This package is auto-updated.
Last update: 2024-10-27 13:21:25 UTC
README
Personal implementation of the Kyoto Tycoon client in PHP.
Short example using the UI:
<?php namespace app; use qad\kyoto; // Start a server with the command line: ktserver require_once 'lib.kyoto.php'; // Get an UI object and clear the database $kt = kyoto\UI()->clear; // Setting records $kt['日本'] = '東京'; $kt->set('Coruscant','Coruscant'); $kt->France('Paris'); // Getting records echo $kt['日本'],PHP_EOL; echo $kt->get('Coruscant'),PHP_EOL; echo $kt->France,PHP_EOL; // Browsing records foreach( $kt->forward() as $k => $v ) echo "country:$k city:$v",PHP_EOL;
Read the partial documentation to learn how to use it.
Look at the test.php
script for more examples.