Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/liexusong/ukg

Unique Key Generate Server
https://github.com/liexusong/ukg

Last synced: about 2 months ago
JSON representation

Unique Key Generate Server

Awesome Lists containing this project

README

        

Unique Key Generate Server
==========================

How to use:

1) Install UKG server


$ make
$ ./ukg -D

2) Install php extension


$ cd ukg_php_extension
$ phpize
$ ./configure
$ make & make install

3) Write php script


<?php
$key = ukg_getkey('127.0.0.1', 7954);
var_dump($key);
$info = ukg_key2info($key);
var_dump($info);
?>