|
@@ -0,0 +1,21 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+//class testcb
|
|
|
+
|
|
|
+$data = json_encode($_POST);
|
|
|
+$sign = $_SERVER['HTTP_SIGN'];
|
|
|
+$addr = $_SERVER['REMOTE_ADDR'];
|
|
|
+$content = $_SERVER['post_content'];
|
|
|
+$xmldata = file_get_contents("php://input");
|
|
|
+$squery = $_SERVER['QUERY_STRING'];
|
|
|
+
|
|
|
+Log::record("request ip:{$addr}",Log::DEBUG);
|
|
|
+Log::record("signature data :{$data}",Log::DEBUG);
|
|
|
+Log::record("content data :{content}",Log::DEBUG);
|
|
|
+Log::record("query_string data :{$squery}",Log::DEBUG);
|
|
|
+Log::record("HTTP_SIGN{$sign}",Log::DEBUG);
|
|
|
+Log::record("XML_DATA:{$xmldata}",Log::DEBUG);
|
|
|
+
|
|
|
+echo ('SUCCESS');
|
|
|
+
|
|
|
+
|