联系官方销售客服
1835022288
028-61286886
请问 如何才能在评论里拿到name呢 用户昵称和评论回复里的@账号 能否换成用户昵称 求大佬们帮帮忙 谢谢
public function output_comment($data) {
$rt = [];
// 这里根据项目的$data输出格式来定义PHP的数据写法,
// 每个接口的写法几乎不一样,下面是测试例子
if ($data['list']) {
foreach ($data['list'] as $t) {
$c = [
'avatar'=> dr_avatar($t['uid']),//用户头像
'author' => $t['author'], // 账号
'title' => $t['title'], // 昵称
'comments' => $t['comments'],//评论总数
'support' => $t['support'],//点赞总数
'id' => $t['id'], // 评论id号
'content' => dr_replace_emotion($t['content']), // 评论内容
'inputtime' => dr_date($t['inputtime'], 'Y-m-d H:i:s'), // 时间转换
];
//回复评论
if ($t['rlist']) {
$r['rlist'] = [];
foreach ($t['rlist'] as $tt) {
$c['rlist'][] = [
'avatar'=> dr_avatar($tt['uid']),//用户头像
'author' => $tt['author'], // 账号
'title' => $tt['title'], // 昵称
'comments' => $tt['comments'],//评论总数
'support' => $tt['support'],//点赞总数
'id' => $tt['id'], // 评论id号
'content' => dr_replace_emotion($tt['content']), // 评论内容
'inputtime' => dr_date($tt['inputtime'], 'Y-m-d H:i:s'), // 时间转换
];
}
}
$rt[] = $c;
}
}
return $rt;
}