服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > zencart教程 >

验证ZenCart货币类型是否存在函数zen_currency_exist

时间:2016-02-27 12:22来源: 作者: 点击:
ZenCart 的zen_currency_exists函数是检验指定的货币代码的货币是否存在,如果存在返回该货币的货币代码,如果不存在,返回false第一个参数就是指定货币的货币代码,比如美元就是usd 第二
ZenCart 的 zen_currency_exists 函数是检验指定的货币代码的货币是否存在,如果存在返回该货币的货币代码,如果不存在,返回false 第一个参数就是指定货币的货币代码,比如美元就是usd
第二个参数是指是否返回默认货币,就是网站指定的默认货币,汇率为1的
函数原型代码
function zen_currency_exists($code, $getFirstDefault = false) {
global $db;
$code = zen_db_prepare_input($code);
$currency_code = “select code
from ” . TABLE_CURRENCIES . ”
where code = ‘” . zen_db_input($code) . “‘ LIMIT 1″;
$currency_first = “select code
from ” . TABLE_CURRENCIES . ”
order by value ASC LIMIT 1″;
$currency = $db->Execute(($getFirstDefault == false) ? $currency_code : $currency_first);
if ($currency->RecordCount()) {
return strtoupper($currency->fields['code']);
} else {
return false;
}
}(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容