PHP進階技巧:php用流方式制作縮略圖_PHP教程
推薦:用PHP來實現頁面GZIP的壓縮輸出教程GZIP(GNU-ZIP)是一種壓縮技術。經過GZIP壓縮后頁面大小可以變為原來的30%甚至更小。這樣用戶瀏覽的時候就會感覺很爽很愉快! 要實現GZIP壓縮頁面需要瀏覽器和服務器共同支持,實際上就是服務
其中db_mysql.inc.php,config.php,function.php不是真正使用到的,關鍵是$filename 文件名,我是通過讀取數據庫中的圖片名稱
<?php
include_once ('inc/db_mysql.inc.php');
include_once ('inc/config.php');
include_once ('class/function.php');
global $picPath;
if (strstr($_SERVER[HTTP_USER_AGENT],"MSIE")) {
$attachment = '';
} else {
$attachment = ' atachment;';
}
$image = getInfo('newssp_gallery','id',$_GET['id']);
$filename = $picPath.$image['filename'];
if (!file_exists($filename)) {
$filename = $picPath."notexist.gif";
}
header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache"); // HTTP/1.0
header("Content-disposition:".$attachment." filename=".$image['original']);
$size = @filesize($filename);
header("Content-Length: $size");
$fd = @fopen($filename,rb);
$contents = @fread($fd,$size);
@fclose ($fd);
echo $contents;
?>
使用的時候可以把在html文件里加上
<img src='showpic.php?id=xxx' width='50' height='50'>
showpic.php及上面的那個php文件,id=xxx是數據庫里的記錄ID,width是縮略圖的寬,height是縮略圖的高,請不要同時寬高都上,例如,你要實現寬為50的縮略圖,只要<img src='showpic.php?id=xxx' width='50'>這樣就可以了
分享:用php odbc access數據庫來操作函數前些天下載了adodb,想用adodb連access數據庫,后來連是連上了,不過不能更新和插入記錄,也不知道為什么到現在還沒人給我回答那個苦惱的問題,后來就放棄了adodb,使用php自己的odbc,但是使用
- 相關鏈接:
- 教程說明:
PHP教程-PHP進階技巧:php用流方式制作縮略圖。