...That whenever I feel like I'm really stumped on an issue and asks for help on it, it won't last more than a few minutes (or an equivalent short period of time) before I figure it out myself. The following piece of code (stripped down to essentials) helped me achieve what I wanted:
if (!($lc_bh = ibase_blob_open($blob_id)))
{
return FALSE;
}
list ($blob["size"], $blob["segnum"], $blob["segsize"], $blob["stream"], $blob["isnull"]) = ibase_blob_info($blob_id);
for ($i = 0; $i < $blob["segnum"]; $i++)
{
$blob["data"] .= ibase_blob_get($lc_bh, $blob["segsize"]);
}