|
@@ -804,15 +804,24 @@ class Api_Live extends PhalApi_Api {
|
|
|
|
|
|
$live_info=$domain->getLiveInfo($liveuid);
|
|
|
$pull=$live_info['pull'];
|
|
|
- if($live_info['isvideo']!=1){
|
|
|
- $pull=PrivateKeyA('rtmp',$stream,0);
|
|
|
- }
|
|
|
+// if($live_info['isvideo']!=1){
|
|
|
+// $pull=PrivateKeyA('rtmp',$stream,0);
|
|
|
+// }
|
|
|
|
|
|
// 获取主播的 头像=live_avatar , 名字=live_nicename
|
|
|
$live_info_json = DI()->redis -> get('userinfo_'.$liveuid);
|
|
|
- $live_d = json_decode($live_info_json, true);
|
|
|
- $info['user_nicename'] = $live_d['user_nicename'];
|
|
|
- $info['live_avatar'] = $live_d['live_avatar'];
|
|
|
+ // 检查值是否存在
|
|
|
+ if ($live_info_json !== false) {
|
|
|
+ $live_d = json_decode($live_info_json, true);
|
|
|
+ $info['user_nicename'] = $live_d['user_nicename'];
|
|
|
+ $info['live_avatar'] = $live_d['live_avatar'];
|
|
|
+ } else {
|
|
|
+ // 键不存在,输出提示信息
|
|
|
+// echo '指定的键在 Redis 中不存在';
|
|
|
+ $rs['code'] = 404;
|
|
|
+ $rs['msg'] = '请输入正常开播的房间号';
|
|
|
+ return $rs;
|
|
|
+ }
|
|
|
|
|
|
$info['pull']=html_entity_decode($pull);
|
|
|
$info['userlists']=$userlists['userlist'];
|