php.ini的配置项:
[ukey]ukey.datacenter = integerukey.worker = integerukey.twepoch = uint64
安装:
$ cd ./ukey$ phpize$ ./configure$ make$ sudo make install
Ukey提供3个有用的函数:
使用实例:
<?php$id = ukey_next_id();echo $id;$timestamp = ukey_to_timestamp($id);echo date('Y-m-d H:i:s', $timestamp);$info = ukey_to_machine($id)var_dump($info);?>