Answers for "php store binary data"

PHP
0

decimal to binary php

$number = 13;
decbin($number); // outputs -> 1101 (string)
Posted by: Guest on February-15-2022
1

file to binary php

$data = fopen ($image, 'rb');
$size=filesize ($image);
$contents= fread ($data, $size);
fclose ($data);
Posted by: Guest on January-25-2021

Browse Popular Code Answers by Language