Skip to content

Instantly share code, notes, and snippets.

@ygerasimov
Created May 19, 2017 05:40
Show Gist options
  • Save ygerasimov/9cc1da08ca898a8b10980b7f25e42f62 to your computer and use it in GitHub Desktop.
Save ygerasimov/9cc1da08ca898a8b10980b7f25e42f62 to your computer and use it in GitHub Desktop.
<?php
define('LOGFILE', '/tmp/callback.log');
if ($_SERVER['REQUEST_METHOD'] == 'GET') {
if (file_exists(LOGFILE)) {
print file_get_contents(LOGFILE);
}
else {
print 'Log file does not exist.';
}
}
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$body = file_get_contents('php://input');
file_put_contents(LOGFILE, $body);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment