发送多行消息的写法,例如帮助或多参数数据的显示

分享 未结
0 444
一片叶子
一片叶子 2023-10-12 10:27
$this->botClient->sendTextToFriends(
    [
        'robot_wxid' => $this->content['robot_wxid'],
        'to_wxid' => $this->toWxid,
        'msg' => "  \r" . $resp['title'] . "今日运势\r" .
            "幸运颜色 : " . $resp['luckycolor'] . "\r" .
            "幸运数字 : " . $resp['luckynumber'] . "\r" .
            "速配星座 : " . $resp['luckyconstellation'] . "\r" .
            "运势解析 :\r" .
            "    综合运势:" . $resp['fortunetext']['all'] . "\r" .
            "    爱情运势:" . $resp['fortunetext']['love'] . "\r" .
            "    学业工作:" . $resp['fortunetext']['work'] . "\r" .
            "    财富运势:" . $resp['fortunetext']['money'] . "\r" .
            "    健康运势:" . $resp['fortunetext']['health'] . "\r" .
            "总结 : " . $resp['shortcomment']
    ]
);


收藏
回帖
  • 消灭零回复