Skip to content

Instantly share code, notes, and snippets.

@usk81
Last active December 27, 2015 23:39
Show Gist options
  • Save usk81/7407168 to your computer and use it in GitHub Desktop.
Save usk81/7407168 to your computer and use it in GitHub Desktop.
バイナリのダンプ。 なにげに使いそうなので
/**
* バイナリのダンプ。
* なにげに使いそうなので
*/
public function bin_dump($data)
{
$binary = unpack("C*", $data );
$result = '';
foreach($binary as $v)
{
$result .= sprintf("%02x ",$v);
}
return $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment