getid3_lib::BigEndian2Bin()
{} It's a method of the class: getid3_lib{}
No Hooks.
Return
String
.
Usage
$result = getid3_lib::BigEndian2Bin( $byteword );
- $byteword(string) (required)
- -
Code of getid3_lib::BigEndian2Bin() getid3 lib::BigEndian2Bin WP 6.0
public static function BigEndian2Bin($byteword) { $binvalue = ''; $bytewordlen = strlen($byteword); for ($i = 0; $i < $bytewordlen; $i++) { $binvalue .= str_pad(decbin(ord($byteword[$i])), 8, '0', STR_PAD_LEFT); } return $binvalue; }