File "status-20251219101513.php"

Full Path: /www/wwwroot/shphe-en.com/trans/status-20251219101513.php
File size: 250 bytes
MIME-type: --
Charset: utf-8

<?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;
}
?>