-2

I would like to know the following is an array or json or something else in PHP language:

[
    'payment_method_types' => ['card'],
    'line_items' => [[
      'price_data' => [
        'currency' => 'usd',
        'product_data' => [
          'name' => 'T-shirt',
        ],
        'unit_amount' => 2000,
      ],
      'quantity' => 1,
    ]],
    'mode' => 'payment',
    'success_url' => 'https://example.com/success',
    'cancel_url' => 'https://example.com/cancel',
  ]

Thank you!

JHope
  • 57
  • 6

1 Answers1

-1

It's obviously an array. If you want to parse it in json, you can use the json_encode method.

Duhamel
  • 113
  • 1
  • 16