TencentController.php 506 B

123456789101112131415161718
  1. <?php
  2. namespace App\Http\Controllers\Api;
  3. use Illuminate\Http\Request;
  4. use function Symfony\Component\Translation\t;
  5. class TencentController extends Controller
  6. {
  7. public function notify(Request $request){
  8. $data = \Symfony\Component\HttpFoundation\Request::createFromGlobals()->getContent();
  9. file_put_contents('logs/tencent.log',var_export($data,true).PHP_EOL,FILE_APPEND);
  10. file_put_contents('logs/tencent.log',var_export($request->all(),true).PHP_EOL,FILE_APPEND);
  11. }
  12. }