Giter VIP home page Giter VIP logo

kyototycoon-client-protocol's Introduction

A PHP5.3+ API for Kyoto Tycoon

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.

kyototycoon-client-protocol's People

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.