So setzen Sie den booleschen Wert in PHP Curl auf „true'.
P粉344355715
P粉344355715 2024-03-30 21:25:31
0
1
495

So legen Sie fixed_rate boolean true

in diesem PHP-Curl fest

fixed_rate (optional) – Boolescher Wert, kann wahr oder falsch sein. Gibt die verfügbaren Währungen sowie die minimalen und maximalen Umtauschbeträge zurück.

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.nowpayments.io/v1/currencies',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'x-api-key: <your_api_key>'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

P粉344355715
P粉344355715

Antworte allen(1)
P粉493534105
CURLOPT_URL => 'https://api.nowpayments.io/v1/currencies?fixed_rate=true',

您应该将固定费率设置为 url 的参数。

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage