feat/task1-c-wallet
gongfuxiang 2019-01-08 01:20:10 +08:00
parent 7698fe0f87
commit 7783b1ab1e
1 changed files with 5 additions and 1 deletions

View File

@ -212,10 +212,14 @@ class WeixinMini
*/
public function Respond($params = [])
{
file_put_contents('./pppppp.txt', json_encode($_POST));
file_put_contents('./gggggg.txt', json_encode($_GET));
file_put_contents('./iiiiii.txt', json_encode(input()));
file_put_contents('./hhhhhh.txt', json_encode($GLOBALS['HTTP_RAW_POST_DATA']));
$result = empty($GLOBALS['HTTP_RAW_POST_DATA']) ? '' : $this->Xml_Array($GLOBALS['HTTP_RAW_POST_DATA']);
if(isset($result['sign']) && $result['sign'] == $this->GetParamSing($result)) return $result;
return '';
return '';
return DataReturn('test', -100);
}