⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 function.get_cityname.php

📁 太烦了
💻 PHP
字号:
<?php
/**
 * Smarty plugin
 * @package Smarty
 * @subpackage plugins
 */


/**
 * Smarty {get_lang} function plugin
 *
 * Type:     function<br>
 * Name:     Get Lang<br>
 * Date:     March 2, 2006<br>
 * Purpose:  Take languave specific texts from database to display
 * @link     To be attached with osdate package and topied to Smarty/plugins directory
 * @author   Vijay Nair <vijay@nairvijay.com>
 * @version  1.0
 * @param    Text_to_check Text for Language Check
 * @return   string
 */

function smarty_function_get_cityname($params, &$smarty )
{
	global $db;
	$citycd = $params['city'];
	$statecd = $params['state'];
	$countrycd = $params['country'];
	$countycd = $params['county'];

	$sql = 'select name from ! where countrycode = ? and statecode = ? and code = ? ';

	if ($countycd != '') {
		$sql .= ' and countycode = '."'".$countycd."'";
	}

	$cityname = $db->getOne($sql, array( CITIES_TABLE, $countrycd, $statecd, $citycd ) );

	if ($cityname == '') $cityname = $citycd;

	return html_entity_decode($cityname);
}

/* vim: set expandtab: */

?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -