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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? 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 " => " upload/ " , //存储文件夹
" maxSize " => 1000 , //允许的文件最大尺寸, 单位KB
" allowFiles " => array ( " .gif " , " .png " , " .jpg " , " .jpeg " , " .bmp " ) //允许的文件格式
);
//上传文件目录
$Path = " upload/ " ;
//背景保存在临时目录中
$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 );
}