细节优化

feat/task1-c-wallet
devil 2020-01-14 16:13:14 +08:00
parent 827e60a76a
commit ae501214e8
1 changed files with 1 additions and 1 deletions

View File

@ -1110,7 +1110,7 @@ function CurlPost($url, $post)
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HEADER => false,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $post,
CURLOPT_POSTFIELDS => http_build_query($post),
);
$ch = curl_init($url);