Skip to content

Instantly share code, notes, and snippets.

@efureev
Created November 18, 2015 11:04
Show Gist options
  • Save efureev/68517716b37de2bdaa7a to your computer and use it in GitHub Desktop.
Save efureev/68517716b37de2bdaa7a to your computer and use it in GitHub Desktop.
Create data uri’s
<?
function data_uri($file, $mime) {
$contents=file_get_contents($file);
$base64=base64_encode($contents);
return "data:$mime;base64,$base64";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment