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);
 }