Searched refs:GUIDstring (Results 1 – 2 of 2) sorted by relevance
| /plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
| D | module.audio-video.asf.php | 1586 * @param string $GUIDstring 1590 public static function GUIDname($GUIDstring) { argument 1595 return array_search($GUIDstring, $GUIDarray); 1614 * @param string $GUIDstring 1618 public static function GUIDtoBytestring($GUIDstring) { argument 1629 $hexbytecharstring = chr(hexdec(substr($GUIDstring, 6, 2))); 1630 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 4, 2))); 1631 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 2, 2))); 1632 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 0, 2))); 1634 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 11, 2))); [all …]
|
| /plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
| D | demo.mp3header.php | 815 function GUIDtoBytestring($GUIDstring) { argument 826 $hexbytecharstring = chr(hexdec(substr($GUIDstring, 6, 2))); 827 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 4, 2))); 828 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 2, 2))); 829 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 0, 2))); 831 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 11, 2))); 832 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 9, 2))); 834 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 16, 2))); 835 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 14, 2))); 837 $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 19, 2))); [all …]
|