更新前端文件
This commit is contained in:
29
public/static/libs/umeditor/php/imageUp.php
Normal file
29
public/static/libs/umeditor/php/imageUp.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?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);
|
||||
}
|
||||
Reference in New Issue
Block a user