Showing
1 changed file
with
2 additions
and
1 deletions
| ... | @@ -201,7 +201,8 @@ class GooglePayment implements PaymentInterface | ... | @@ -201,7 +201,8 @@ class GooglePayment implements PaymentInterface |
| 201 | //SUBSCRIPTION_EXPIRED - 订阅已到期。 | 201 | //SUBSCRIPTION_EXPIRED - 订阅已到期。 |
| 202 | 202 | ||
| 203 | $data = base64_decode($string); | 203 | $data = base64_decode($string); |
| 204 | - | 204 | + Log::debug('base64解码数据:===================='); |
| 205 | + Log::debug(print_r($data,true)); | ||
| 205 | $packageName = $data['packageName']; | 206 | $packageName = $data['packageName']; |
| 206 | if (isset($data['subscriptionNotification'])) { | 207 | if (isset($data['subscriptionNotification'])) { |
| 207 | $subscriptionId = $data['subscriptionNotification']['subscriptionId']; | 208 | $subscriptionId = $data['subscriptionNotification']['subscriptionId']; | ... | ... |
-
Please register or login to post a comment