Skip to content

Instantly share code, notes, and snippets.

@hmert
Created May 2, 2012 21:15
Show Gist options
  • Save hmert/2580587 to your computer and use it in GitHub Desktop.
Save hmert/2580587 to your computer and use it in GitHub Desktop.
<?php
function data_uri($file, $mime) {
$contents=file_get_contents($file);
$base64=base64_encode($contents);
echo "data:$mime;base64,$base64";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment