You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
962 B
30 lines
962 B
10 months ago
|
<?php
|
||
|
header("Content-Type:text/html;charset=utf-8");
|
||
|
error_reporting( E_ERROR | E_WARNING );
|
||
|
date_default_timezone_set("Asia/chongqing");
|
||
|
include "Uploader.class.php";
|
||
|
//上传配置
|
||
|
$config = array(
|
||
|
"savePath" => "../../../uploads/editor/" , //存储文件夹
|
||
|
"maxSize" => 1000 , //允许的文件最大尺寸,单位KB
|
||
|
"allowFiles" => array( ".gif" , ".png" , ".jpg" , ".jpeg" , ".bmp" ) //允许的文件格式
|
||
|
);
|
||
|
//上传文件目录
|
||
|
$Path = "../../../uploads/editor/";
|
||
|
|
||
|
//背景保存在临时目录中
|
||
|
$config[ "savePath" ] = $Path;
|
||
|
$up = new Uploader( "upfile" , $config );
|
||
|
$type = $_REQUEST['type'];
|
||
|
$callback=$_GET['callback'];
|
||
|
|
||
|
$info = $up->getFileInfo();
|
||
|
/**
|
||
|
* 返回数据
|
||
|
*/
|
||
|
if($callback) {
|
||
|
echo '<script>'.$callback.'('.json_encode($info).')</script>';
|
||
|
} else {
|
||
|
echo json_encode($info);
|
||
|
}
|