Create GET, POST, php://input to log file
$output0 = print_r($_GET, true);
$output1 = print_r($_POST, true);
$output2 = print_r(file_get_contents('php://input'), true);
$handle = fopen('logs/'.date('Y-m-d-H-i-s').'_notification.txt','a');
fwrite($handle,"init-------------------------------------------");
fwrite($handle,"\n\n\n\noutput0-------------------------------------------\n");
fwrite($handle,$output0."\n");
fwrite($handle,"\n\n\n\noutput1-------------------------------------------\n");
fwrite($handle,$output1."\n");
fwrite($handle,"\n\n\n\noutput2-------------------------------------------\n");
fwrite($handle,$output2."\n");
fwrite($handle,"end-------------------------------------------\n");
fclose($handle);
echo "ok";
Tagged:
0
Howdy, Stranger!
Categories
- 99 All Categories
- 24 VoIP
- 11 SIP
- 16 asterisk
- 44 Programming
- 1 Nodejs
- 4 javascript
- 19 PHP
- 8 Codeigniter
- 14 database
- 1 UI/UX
- 2 Flutter
- 29 OS
- 27 Linux
- 1 Virtualization
- 1 Android
- 1 Windows
- 2 legal
