获取系统中配置的币种
请求参数
参数 | 类型 | 说明 | 必需的 |
---|---|---|---|
action | string | “GetCurrencies” | Required |
响应参数
参数 | 类型 | 说明 |
---|---|---|
result | string | 操作结果:成功或错误 |
totalresults | int | 可用结果总数 |
currencies | array | 返回的货币条目 |
示例请求 (CURL)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.example.com/includes/api.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
http_build_query(
array(
'action' => 'GetCurrencies',
// See https://developers.whmcs.com/api/authentication
'username' => 'IDENTIFIER_OR_ADMIN_USERNAME',
'password' => 'SECRET_OR_HASHED_PASSWORD',
'responsetype' => 'json',
)
)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);
示例请求(本地 API)
$command = 'GetCurrencies';
$postData = array(
);
$adminUsername = 'ADMIN_USERNAME'; // Optional for WHMCS 7.2 and later
$results = localAPI($command, $postData, $adminUsername);
print_r($results);
示例响应 JSON
{
"result": "success",
"totalresults": "1",
"currencies[currency][0][id]": "1",
"currencies[currency][0][code]": "USD",
"currencies[currency][0][prefix]": "$",
"currencies[currency][0][suffix]": " USD",
"currencies[currency][0][format]": "1",
"currencies[currency][0][rate]": "1.00000"
}
相关用法
- PHP WHMCS GetClientPassword用法及代码示例
- PHP WHMCS GetContacts用法及代码示例
- PHP WHMCS GetClientsDomains用法及代码示例
- PHP WHMCS GetCredits用法及代码示例
- PHP WHMCS GetClientsAddons用法及代码示例
- PHP WHMCS GetClients用法及代码示例
- PHP WHMCS GetClientsDetails用法及代码示例
- PHP WHMCS GetConfigurationValue用法及代码示例
- PHP WHMCS GetClientGroups用法及代码示例
- PHP WHMCS GetCancelledPackages用法及代码示例
- PHP WHMCS GetClientsProducts用法及代码示例
- PHP WHMCS GetTicketNotes用法及代码示例
- PHP WHMCS GetUsers用法及代码示例
- PHP WHMCS GetTLDPricing用法及代码示例
- PHP WHMCS GetToDoItemStatuses用法及代码示例
- PHP WHMCS GetPermissionsList用法及代码示例
- PHP WHMCS GetStaffOnline用法及代码示例
- PHP WHMCS GetEmails用法及代码示例
- PHP WHMCS GetPromotions用法及代码示例
- PHP WHMCS GetRegistrars用法及代码示例
- PHP WHMCS GetAutomationLog用法及代码示例
- PHP WHMCS GetQuotes用法及代码示例
- PHP WHMCS GetActivityLog用法及代码示例
- PHP WHMCS GetPaymentMethods用法及代码示例
- PHP WHMCS GetModuleQueue用法及代码示例
注:本文由纯净天空筛选整理自whmcs.com大神的英文原创作品 GetCurrencies。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。