Home
last modified time | relevance | path

Searched refs:utf8text (Results 1 – 1 of 1) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.mp3header.php932 function utf8_decode($utf8text) { argument
940 $utf8length = strlen($utf8text);
943 if ((ord($utf8text[$i]) & 0x80) == 0) {
944 $decodedtext .= $utf8text[$i];
945 } elseif ((ord($utf8text[$i]) & 0xF0) == 0xF0) {
948 } elseif ((ord($utf8text[$i]) & 0xE0) == 0xE0) {
951 } elseif ((ord($utf8text[$i]) & 0xC0) == 0xC0) {
953 …$decodedchar = Bin2Dec(substr(Dec2Bin(ord($utf8text[$i])), 3, 5).substr(Dec2Bin(ord($utf8text[($i …