Skip to content

Instantly share code, notes, and snippets.

@gr8pathik
Created December 2, 2013 12:56
Show Gist options
  • Save gr8pathik/7749064 to your computer and use it in GitHub Desktop.
Save gr8pathik/7749064 to your computer and use it in GitHub Desktop.
Create Data URI’s using PHP - Source: http://css-tricks.com/snippets/php/create-data-uris/
<?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