splitice / kyototycoon
implementation of the Kyoto Tycoon client in PHP
Installs: 369
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 2
pkg:composer/splitice/kyototycoon
Requires
- php: >=5.3
This package is auto-updated.
Last update: 2025-09-27 15:18:15 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.