本文整理汇总了PHP中_get_region函数的典型用法代码示例。如果您正苦于以下问题:PHP _get_region函数的具体用法?PHP _get_region怎么用?PHP _get_region使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了_get_region函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _get_price_tankinspection
function _get_price_tankinspection($postalcode, $ligging_tank)
{
$region = _get_region($postalcode);
$price = db_select('a30_prices_tankinspection', 'p')->fields('p')->condition('region', $region, '=')->execute()->fetch();
if (empty($price)) {
throw new \Exception('a30_prices_tankinspection not found');
}
if ($ligging_tank == 'ondergronds' || $ligging_tank == 'souterrain') {
return $price->price_under;
} else {
return $price->price_above;
}
}
示例2: geoip_region_by_addr
function geoip_region_by_addr($gi, $addr)
{
if ($addr == NULL) {
return 0;
}
$ipnum = ip2long($addr);
return _get_region($gi, $ipnum);
}