Skip to content

Instantly share code, notes, and snippets.

@koobitor
Created September 8, 2017 06:12
Show Gist options
  • Save koobitor/48cccf4489065cd5392de4df382f1c29 to your computer and use it in GitHub Desktop.
Save koobitor/48cccf4489065cd5392de4df382f1c29 to your computer and use it in GitHub Desktop.
<?php
// Parse json body to array
$data = json_decode(file_get_contents("php://input"), true);
// Set logs file destination
$dir = getcwd()."/logs.log";
// Open file logs
$file = fopen($dir,"a");
// Write data into file logs
fwrite($file,print_r($data,1));
// Close file logs
fclose($file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment