说明:
PHP文件上传类。上传时区分两种类型:image(图片)、file(普通文件)。image: 可以生成缩略图和投影;file: 可设置过滤文件类型。集成“图片上传类”和“文件上传类”。
用法:
上传普通文件:
<?php
include('upload.class.php');
if (isset($_GET['up'])){
$up = new upload(); // 完整格式:$up = new upload('上传类型', '附件保存位置');
$up->uploadFileType = 'file';
// 上边两行了可以简...
标签为 自动缩略图 的文章:
说明:
PHP图片上传类,通过文件头验证是否图片,可生成缩略图(缩略图有简单投影、阴影功能)。
预览:
PHP图片上传类
用法:
<?php
include('upimg.class.php');
if (isset($_GET['up'])){
$up = new upimg("upload", "upload/thumb");
$up->thumbWidth = 160;
$up->thumbHeight = 120;
$up->autoShandow = TRUE;
$up->shandowX = 4;
$up->shandowY = 4;
$up->sh...