Skip to content

Instantly share code, notes, and snippets.

@abada
Forked from nolim1t/gist:208993
Created February 29, 2020 13:38
Show Gist options
  • Save abada/8d2502e3eb1b3206be7a77dab985c5af to your computer and use it in GitHub Desktop.
Save abada/8d2502e3eb1b3206be7a77dab985c5af to your computer and use it in GitHub Desktop.
Converting a binary file to base64 encoding
<?php
$file="/parh/to/binary";
$fp = fopen($file, "rb");
$binary = fread($fp, filesize($file));
echo base64_encode($binary);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment