本文整理匯總了PHP中AkCharset類的典型用法代碼示例。如果您正苦於以下問題:PHP AkCharset類的具體用法?PHP AkCharset怎麽用?PHP AkCharset使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了AkCharset類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
/**
* Decodes given UFT-8 string into CP1252
*
* @access public
* @see UtfEncode
* @param string $string UTF-8 string
* @return string CP1252 string data
*/
function _Utf8StringDecode($string)
{
$this->_LoadInverseMap();
return parent::_Utf8StringDecode($string, $this->_fromUtfMap);
}
示例2: _utf8StringDecode
/**
* Decodes given UFT-8 string into ISO-8859-9
*
* @access public
* @see UtfEncode
* @param string $string UTF-8 string
* @return string ISO-8859-9 string data
*/
protected function _utf8StringDecode($string, $mapping_array = array())
{
$this->_LoadInverseMap();
return parent::_utf8StringDecode($string, $this->_fromUtfMap);
}