PHP 関数を使用して ISP バイナリ ファイル (FIPS 10-4 形式でコード化) を読み込もうとしています。ただし、データは読み取り不能な形式で返されます。
$filename = 'D:\xampp\htdocs\openx\var\jeet\GeoIPISP.dat';
$handle = fopen($filename, "rb");
$fsize = filesize($filename);
$contents = fread($handle, $fsize);
// iterate through each byte in the contents
for($i = 0; $i < $fsize; $i++)
{
// get the current ASCII character representation of the current byte
$asciiCharacter = $contents[$i];
// get the base 10 value of the current characer
$base10value = ord($asciiCharacter);
// now convert that byte from base 10 to base 2 (i.e 01001010...)
$base2representation = base_convert($base10value, 10, 2);
// print the 0s and 1s
$base10value = base_convert($base2representation, 2, 10); // => 132
$ASCIICharacter = chr($base10value); // => 'Z'
echo $ASCIICharacter;
}
バイナリファイルのすべてのデータをphp文字列/配列に取得するにはどうすればよいですか?