Skip to content

Instantly share code, notes, and snippets.

@alemohamad
Created December 14, 2013 20:30
Show Gist options
  • Save alemohamad/7964530 to your computer and use it in GitHub Desktop.
Save alemohamad/7964530 to your computer and use it in GitHub Desktop.
Create Data URI's
<?php
// These can be useful for embedding images into HTML/CSS/JS
// to save on HTTP requests, at the cost of maintainability.
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