Skip to content

Instantly share code, notes, and snippets.

@mikesprague
Last active December 27, 2015 02:19
Show Gist options
  • Save mikesprague/7251696 to your computer and use it in GitHub Desktop.
Save mikesprague/7251696 to your computer and use it in GitHub Desktop.
PHP: Create Data URI
<?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