mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
8 lines
183 B
PHP
8 lines
183 B
PHP
<?php
|
|
|
|
// 获取notify通知的body信息
|
|
$notifyBody = file_get_contents('php://input');
|
|
|
|
// 业务服务器处理通知信息, 这里直接打印在log中
|
|
error_log($notifyBody);
|