feat/task1-c-wallet
gongfuxiang 2018-10-23 00:17:33 +08:00
parent ee52db61b6
commit 6569b2b36d
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ class AlipayLifeController extends CommonController
{
file_put_contents('./gggggg.txt', json_encode($_GET));
file_put_contents('./pppppp.txt', json_encode($_POST));
file_put_contents('./ffffff.txt', file_get_contents("php://input"));
file_put_contents('./ffffff.txt', urldecode(file_get_contents("php://input")));

View File

@ -26,7 +26,7 @@ class AlipayLifeService
{
return M('AlipayLife')->where(['appid'=>$params['appid']])->find();
}
return '';
return null;
}
}
?>