回调demo 2017-09-08 评论 字数统计: 44(字) 阅读时长: 1(分) 接收回调,以 php 为例,可以用下面的 file_get_contents("php://input"); demo 如下 <?php $myfile = fopen("res.txt", "w"); $notify = file_get_contents("php://input"); fwrite($myfile, $notify); fclose($myfile);