status.php 250 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php $domain = $_GET["domain"]; $rediskey = "globalso_page:$domain"; $redis = new Redis(); $redis->connect('161.8.184.24', 6388); $redis->auth('globalso@2020'); $len = $redis->llen($rediskey); if($len == 0 ){ echo 0; }else{ echo $len; } ?>