Skip to content

Instantly share code, notes, and snippets.

@davide-romanini
Created April 15, 2011 09:17
Show Gist options
  • Save davide-romanini/921441 to your computer and use it in GitHub Desktop.
Save davide-romanini/921441 to your computer and use it in GitHub Desktop.
<?php
$row = array_pop($db->query("SELECT my_blob_col FROM my_blob_table"));
$blob = $ros['my_blob_col'];
assertEquals(TRUE, is_resource($blob));
while(!feof($blob)) {
echo fread($blob, 8192);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment