1234567891011121314151617 |
- <?php
- namespace loyalsoft;
- include __DIR__ . '/main.php';
- //require_once ROOTDIR . '/Util/OpenSSLVerify.php'; # Ps. 这个文件和类名没有对应关系.
- //header('X-Accel-Buffering: no'); # nginx 控制头, 关闭buffer
- //set_time_limit(15); # 设置执行超时时间
- echoLine("phpver:" . PHP_VERSION);
- $key = "testzset";
- $key_new = "wanggang";
- //gMem()->zcopy($key, $key_new);
- echoLine(sprintf("%s:%s", $key, $key_new));
- //var_dump(gMem()->zrevrangebyscore($key_new, 100, 1, $withScore));
|