其中db_mysql.inc.php,config.php,function.php不是真正使用到的,关键是$filename 文件名,我是通过读取数据库中的图片名称
<?php
include_once ('inc/db_mysql.inc.php');
include_once ('inc/config.php');
include_once ('clase/función.php');
global $picPath;
si (strstr($_SERVER[HTTP_USER_AGENT],"MSIE")) {
$adjunto = '';
} demás {
$adjunto = 'adjunto;';
}
$imagen = getInfo('newssp_gallery','id',$_GET['id']);
$nombre de archivo = $picPath.$imagen['nombre de archivo'];
if (!file_exists($nombre de archivo)) {
$nombredearchivo = $picPath."notexist.gif";
}
header("Control de caché: sin almacenamiento, sin caché, debe revalidar"); //HTTP/1.1
encabezado ("Control de caché: verificación posterior = 0, verificación previa = 0", falso);
encabezado("Pragma: sin caché"); // encabezado HTTP/1.0
("Disposición de contenido:".$attachment." filename=".$image['original']);
$tamaño = @filesize($nombre de archivo);
encabezado("Contenido-Longitud: $tamaño");
$fd = @fopen($nombre de archivo,rb);
$contenido = @fread($fd,$tamaño);
@fclose ($fd);
eco $contenido;
?>
使用的时候可以把在html文件里加上
<img src='showpic.php?id=xxx' width='50' height='50'>
showpic.php及上面的那个php文件,id=xxx是ID de ancho, ancho, altura, altura, 50的缩略图,只要<img src='showpic.php? id=xxx' ancho='50'>这样就可以了