Example #1
0
 /**
  * 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);
 }
Example #2
0
 /**
  * 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);
 }