yzms/umeditor/php/imageUp.php

30 lines
969 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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" => "../../backstage/uploadfiles/umeditor_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);
}