Oracle
 sql >> Database >  >> RDS >> Oracle

Oracle Blob come img src nella pagina PHP

Bene, puoi fare alcune cose. Puoi creare una pagina che renderà l'immagine

<img src="image.php?id=123" />

Quella pagina image.php avrebbe questo:

$sql = "SELECT image FROM images WHERE image_id = " . (int) $_GET['id'];
$stid = oci_parse($conn, $sql);
oci_execute($stid);
$row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS);
if (!$row) {
    header('Status: 404 Not Found');
} else {
    $img = $row['IMAGE']->load();
    header("Content-type: image/jpeg");
    print $img;
}

Oppure, potresti codificarlo in base64 in src (nota, non tutti i browser gestiscono questo bene):

<img src="data:image/jpeg;base64,<?php echo base64_encode($img); ?>" />