|
...
|
...
|
@@ -73,7 +73,7 @@ class RatingLogic extends BaseLogic |
|
|
|
//$ftype 2,3,4
|
|
|
|
$str = '';
|
|
|
|
foreach ($data as $k => $v){
|
|
|
|
$str .= 'name_'.(int)($k+1).'='.$v['level'].'&';
|
|
|
|
$str .= 'name_'.(int)($k+1).'='.($v['level'] ?? 5).'&';
|
|
|
|
}
|
|
|
|
$str = trim($str,'&');
|
|
|
|
$url = "http://www.quanqiusou.cn/extend_api/api/service_score.php?postid=$postId&token=$token&ftype=$fType&$str";
|
...
|
...
|
|