ThinkPHP推送uniapp消息
在ThinkPHP中推送消息给uniapp,可以使用HTTP请求来实现。以下是一个简单的示例,展示了如何使用ThinkPHP发送POST请求给uniapp:
// 假设uniapp端已经设置好了一个接收消息的接口URL
$uniappUrl = 'https://your-uniapp-endpoint.com/receive_message';
// 要发送的消息内容
$message = [
'title' => 'Hello from ThinkPHP',
'content' => 'This is a push message from ThinkPHP',
// 其他你需要传递的参数
];
// 使用curl发送POST请求
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $uniappUrl);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($message));
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
// 处理响应结果
if ($response) {
// 成功处理响应
echo 'Message sent successfully';
} else {
// 处理失败情况
echo 'Failed to send message';
}
确保你的uniapp端已经准备好接收和处理来自ThinkPHP的POST请求。以上代码只是一个示例,根据你的实际需求,你可能需要添加错误处理、验证和其他安全措施。
评论已关闭