/* * 函數說明:導航獲取中文的英文名稱,需配置!!!!! * * @access public * @param $chinese string 中文名稱 * @return string 英文名稱 */ function translate($chinese = ''){ $dictionary = array( '新聞中心' => 'News', '關於我們' => 'About Us', '我們的服務' => 'OUR SERVICE', '產品中心' => 'PRODUCTS', '案例展示' => 'case', '新聞動態' => 'news', '合作流程' => 'COOPERATION PROCESS', ); $english = $chinese; if (array_key_exists($chinese, $dictionary)) { $english = $dictionary[$chinese]; } else $english = '~typenameen~'; return $english; }
/*
* 函數說明:導航獲取中文的英文名稱,需配置!!!!!
*
* @access public
* @param $chinese string 中文名稱
* @return string 英文名稱
*/
function
translate($chinese
=
''){
$dictionary
=
array(
'新聞中心'
=>
'News',
'關於我們'
=>
'About Us',
'我們的服務'
=>
'OUR SERVICE',
'產品中心'
=>
'PRODUCTS',
'案例展示'
=>
'case',
'新聞動態'
=>
'news',
'合作流程'
=>
'COOPERATION PROCESS',
);
$english
= $chinese;
if (
array_key_exists($chinese, $dictionary)) {
$english
= $dictionary[$chinese];
}
else $english
=
'~typenameen~';
return $english;
}