本文整理汇总了PHP中api::rateInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP api::rateInfo方法的具体用法?PHP api::rateInfo怎么用?PHP api::rateInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类api
的用法示例。
在下文中一共展示了api::rateInfo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<?php
if (isset($data['firstCurrency'])) {
$currentRate = $data;
} else {
if (isset($_GET['Data'])) {
$currentRate = $_GET['Data'];
}
}
if (isset($currentRate['firstCurrency'])) {
$rateInfo = api::rateInfo($currentRate['firstCurrency'], $currentRate['secondCurrency']);
$maxPrice = $rateInfo['bid'];
$minPrice = $rateInfo['ask'];
}
$id = $currentRate['firstCurrency'] . $currentRate['secondCurrency'];
?>
<div class="title greenMark"><?php
print Core::translateToCurrentLocale('Special kinds of deals');
?>
:</div>
<form class="specialtrade">
<input type="hidden" name="firstCurrency" value="<?php
print $currentRate['firstCurrency'];
?>
">
<input type="hidden" name="secondCurrency" value="<?php
print $currentRate['secondCurrency'];
?>
">
<span class="trade-radio">
<label><input name="type" class="buy" type="radio" value="buy" checked="checked" onclick='(function(obj){$(obj).closest("div").children().find(".Limit").val("BuyLimit"); $(obj).closest("div").children().find(".Stop").val("BuyStop"); $(obj).closest("div").children().find(".price").attr("placeholder","<?php