redis->executeCommand('SCARD', [$cacheKey]); if ($num <= 0) { return false; } if ($num > 20) { noticeUtil::push("assign seat all 已经超过20家了,请及时解决", '15280215347'); } $list = Yii::$app->redis->executeCommand('SMEMBERS', [$cacheKey]); if (empty($list)) { return false; } foreach ($list as $key => $val) { //$mainId . '_' . $bookSn $arr = explode('_', $val); $mainId = $arr[0]; $bookSn = $arr[1]; echo $mainId . ' ' . $bookSn . "\n"; } } }