我正在使用Paypal的Webhooks,但是在发送了Mock Hook之后,它会触发Hook the whoooole time。每次约5分钟左右:
public function paypalhooked(){
$input = @file_get_contents("php://input");
$event_json = json_decode($input, TRUE);
AppController::mailsend($event_json, 'admin_paypalwebhook', 'Subject', 'info@xxxxx',0 , '');
}
怎么办?