本文整理汇总了PHP中UploadFile类的典型用法代码示例。如果您正苦于以下问题:PHP UploadFile类的具体用法?PHP UploadFile怎么用?PHP UploadFile使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了UploadFile类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addvedio
public function addvedio()
{
$zhang_id = $_POST['zhang_id'];
$vedio_title = $_POST['vedio_title'];
$course_id = $_POST['course_id'];
$upload = new UploadFile($_POST['file']);
$upload->allowExts = array('mp4');
$upload->savePath = './../Public/Uploads/vedio/';
if (!$upload->upload()) {
$this->error($upload->getErrorMsg());
} else {
$info = $upload->getUploadFileInfo();
$vedio = M('vedio');
$vedio->create();
$vedio->vedio_title = $vedio_title;
$vedio->vedio_name = $info[0]['savename'];
$vedio->zhang_id = $zhang_id;
$result = $vedio->add();
$this->assign("jumpUrl", "__APP__/Vedio/index/id/{$course_id}");
if ($result) {
$this->success("添加成功!");
} else {
$this->error("添加不成功");
}
}
}
示例2: updataIconSubmit
public function updataIconSubmit()
{
$upload = new UploadFile();
/* 文件大小单位以字节为单位 */
$upload->maxSize = C('UPLOAD_ICON_SIZE');
$upload->allowExts = array('jpg');
$upload->thumb = true;
$upload->thumbMaxWidth = '200';
$upload->thumbMaxHeight = '270';
$upload->savePath = '../Public/Uploads/icons/';
if (!$upload->upload()) {
$info = $upload->getErrorMsg();
echo '{"data":"' . $info . '","info":"' . $info . '","status":false}';
/* $this->ajaxReturn ( $info, '更新失败', false ); */
} else {
$info = $upload->getUploadFileInfo();
$m = M('UserBaseinfo');
$data['icon'] = $info[0]['savename'];
$result = $m->where('uid="' . $_POST['uid'] . '"')->save($data);
if ($result) {
writeOperationLog(APP_NAME, MODULE_NAME, ACTION_NAME, '更新头像');
echo '{"data":"' . $result . '","info":"Profile updated!","status":true}';
/* $this->ajaxReturn ( $result, '更新成功', true ); */
} else {
echo '{"data":"' . $result . '","info":"Profile update failed!","status":false}';
/* $this->ajaxReturn ( $result, '更新失败', false ); */
}
}
}
示例3: localupload
public function localupload(){
$upload = new UploadFile();
$upload->allowExts = array('pem');
//覆盖同名的文件
$upload->uploadReplace=1;
$firstLetter=substr($this->token,0,1);
$upload->savePath = './uploads/'.$firstLetter.'/'.$this->token.'/';// 设置附件上传目录
//
if (!file_exists($_SERVER['DOCUMENT_ROOT'].'/uploads')||!is_dir($_SERVER['DOCUMENT_ROOT'].'/uploads')){
mkdir($_SERVER['DOCUMENT_ROOT'].'/uploads',0777);
}
$firstLetterDir=$_SERVER['DOCUMENT_ROOT'].'/uploads/'.$firstLetter;
if (!file_exists($firstLetterDir)||!is_dir($firstLetterDir)){
mkdir($firstLetterDir,0777);
}
if (!file_exists($firstLetterDir.'/'.$this->token)||!is_dir($firstLetterDir.'/'.$this->token)){
mkdir($firstLetterDir.'/'.$this->token,0777);
}
if(!file_exists($upload->savePath)||!is_dir($upload->savePath)){
mkdir($upload->savePath,0777);
}
// $upload->hashLevel=2;
if(!$upload->upload()) {// 上传错误提示错误信息
$error=1;
$msg=$upload->getErrorMsg();
$this->error($msg);exit;
}else{// 上传成功 获取上传文件信息
$error=0;
$info = $upload->getUploadFileInfo();
$this->siteUrl=$this->siteUrl?$this->siteUrl:C('site_url');
$msg=$this->siteUrl.substr($upload->savePath,1).$info[0]['savename'];
//成功入库
$this->addCert($info[0]['key'],$msg);
}
}
示例4: ueditorUpload
public function ueditorUpload()
{
import('ORG.Net.UploadFile');
$upload = new UploadFile();
// 实例化上传类
$upload->maxSize = 2 * 1024 * 1024;
//设置上传图片的大小
$upload->allowExts = array('jpg', 'png', 'gif');
//设置上传图片的后缀
$upload->autoSub = true;
//是否使用子目录保存上传文件
$upload->subType = 'date';
//子目录创建方式,默认为hash,可以设置为hash或者date
$upload->dateFormat = 'Ym';
//子目录方式为date的时候指定日期格式
$upload->savePath = C('UPLOAD_PATH');
// 设置附件上传目录
if ($upload->upload()) {
$uploadInfo = $upload->getUploadFileInfo();
$res = array('state' => 'SUCCESS', 'title' => htmlspecialchars($_POST['pictitle'], ENT_QUOTES), 'url' => $uploadInfo[0]['savename'], 'original' => $uploadInfo[0]['name'], 'filetype' => $uploadInfo[0]['extension'], 'size' => $uploadInfo[0]['size'], 'savename' => $uploadInfo[0]['savename']);
} else {
$res = array('state' => $upload->getErrorMsg());
}
echo json_encode($res);
exit;
}
示例5: upimg
public function upimg($path)
{
import("ORG.Net.UploadFile");
$upload = new UploadFile();
$upload->maxSize = '2048000';
$upload->savePath = $path;
$upload->saveRule = uniqid;
$upload->allowExts = array('jpg', 'jpeg', 'png', 'gif', 'bmp');
//$upload->allowTypes=array('','','','','','');
/*
$upload->thumb=false;
$upload->thumbPrefix = 'm_,s_'; //生产2张缩略图
//设置缩略图最大宽度
$upload->thumbMaxWidth = '620,400';
//设置缩略图最大高度
$upload->thumbMaxHeight = '620,400';*/
// 是否删除原图
$upload->thumbRemoveOrigin = false;
// 调用上传方法
if ($upload->upload()) {
// 成功则返回对应信息用于之后的调用
$info = $upload->getUploadFileInfo();
return $info;
} else {
$this->error($upload->getErrorMsg());
}
}
示例6: add
public function add()
{
import('ORG.Net.UploadFile');
$upload = new UploadFile();
// 实例化上传类
$upload->maxSize = -1;
// 设置附件上传大小
$upload->allowExts = array();
// 设置附件上传类型
$upload->savePath = './Public/Uploads/apply/';
// 设置附件上传目录
if (!$upload->upload()) {
// 上传错误提示错误信息
$this->error($upload->getErrorMsg());
} else {
// 上传成功 获取上传文件信息
$info = $upload->getUploadFileInfo();
}
// 保存表单数据 包括附件数据
$join = M("join");
// 实例化对象
$user = M('user');
$data = array('uid' => $_SESSION['uid'], 'people1' => $_POST['people1'], 'people2' => $_POST['people2'], 'phone1' => $_POST['phone1'], 'phone2' => $_POST['phone2'], 'email' => $_POST['email'], 'timeid' => $_POST['timeid'], 'file' => $info[0]['savename']);
$updata = array('id' => $_SESSION['uid'], 'class' => '2');
//p($data);die;
//$User->img = $info[0]['savename']; // 保存上传的照片根据需要自行组装
if ($join->add($data) && $user->save($updata)) {
$this->success('数据保存成功!请重新登录', U(GROUP_NAME . '/Login/index'));
} else {
$this->error('失败');
}
}
示例7: _upload
private function _upload()
{
import("@.ORG.Util.UploadFile");
$module = strtolower($_REQUEST["module"]);
$upload = new UploadFile();
$upload->subFolder = $module;
$upload->savePath = C("SAVE_PATH");
$upload->saveRule = uniqid;
$upload->autoSub = true;
$upload->subType = "date";
if (!$upload->upload()) {
$this->error($upload->getErrorMsg());
} else {
//取得成功上传的文件信息
$uploadList = $upload->getUploadFileInfo();
$File = M("File");
$File->create($uploadList[0]);
$File->create_time = time();
$user_id = get_user_id();
$File->user_id = $user_id;
$fileId = $File->add();
$fileInfo = $uploadList[0];
$fileInfo['id'] = $fileId;
$fileInfo['error'] = 0;
$fileInfo['url'] = $fileInfo['savepath'] . $fileInfo['savename'];
//header("Content-Type:text/html; charset=utf-8");
exit(json_encode($fileInfo));
//$this->success ('上传成功!');
}
}
示例8: addDoc
public function addDoc()
{
$course_id = $_POST['course_id'];
$zhang_name = $_POST['zhang_name'];
$usertype = Cookie::get('usertype');
$upload = new UploadFile($_POST['file']);
$upload->allowExts = array('zip', 'rar', 'gz');
$upload->savePath = './../Public/Uploads/document/';
if (!$upload->upload()) {
$this->error($upload->getErrorMsg());
} else {
$info = $upload->getUploadFileInfo();
}
$zhang = M('zhang');
$zhang->create();
$zhang->course_id = $course_id;
$zhang->zhang_name = $zhang_name;
$zhang->file = $info[0]['savename'];
$result = $zhang->add();
$this->assign("jumpUrl", "__APP__/Document/teacherindex/id/{$course_id}");
if ($result) {
$this->success("添加成功!");
} else {
$this->error($result->getErrorMsg());
}
}
示例9: uploadaFile
/**
* Upload a File
*
* @param upurl - required -
* The upload URL.
* @param bid - required -
* The item Id returned in the same call with the upload URL.
* @param fname - required -
* The name of the file to be uploaded. (path+fileName+fileExtension).
* @return The YsiResponse object containing the upload status.
* */
public function uploadaFile($upurl, $bid, $fname)
{
$a = new UploadFile($upurl, $bid, $fname);
$response = $a->sendRequest();
$response = str_replace("upload-status", "uploadstatus", $response);
$responseBody = simplexml_load_string($response);
$returnObject = new YsiResponse();
if ($responseBody === false) {
$errorCode = 'N/A';
$errorMessage = 'The server has encountered an error, please try again.';
$errorObject = new ErrorStatus($errorCode, $errorMessage);
$returnObject->setErrorStatus($errorObject);
} else {
if (empty($responseBody->errorStatus)) {
$ufid = (string) $responseBody->ufid;
$returnObject->setUfid($ufid);
$uploadStatus = (string) $responseBody->uploadstatus;
$returnObject->setUploadStatus($uploadStatus);
} else {
$errorCode = (string) $responseBody->errorStatus->code;
$errorMessage = (string) $responseBody->errorStatus->message;
$errorObject = new ErrorStatus($errorCode, $errorMessage);
$returnObject->setErrorStatus($errorObject);
}
}
return $returnObject;
}
示例10: upimg
public function upimg($path, $width = '300', $height = '150')
{
import("ORG.Net.UploadFile");
$upload = new UploadFile();
$upload->maxSize = '2048000';
$upload->savePath = $path;
$upload->saveRule = uniqid;
$upload->allowExts = array('jpg', 'jpeg', 'png', 'gif', 'bmp');
//$upload->allowTypes=array('','','','','','');
// 是否生成缩略图
$upload->thumb = true;
$upload->thumbMaxWidth = $width;
$upload->thumbMaxHeight = $height;
// 缩略图前缀
$upload->thumbPrefix = 'a';
// 是否删除原图
$upload->thumbRemoveOrigin = true;
// 调用上传方法
if ($upload->upload()) {
// 成功则返回对应信息用于之后的调用
$info = $upload->getUploadFileInfo();
return $info;
} else {
$this->error($upload->getErrorMsg());
}
}
示例11: upload_image
function upload_image($file)
{
require_once '../class/upload.class.php';
$db_img = new DB();
if (!empty($file)) {
$time = time();
$year_month = date('Ym', $time);
$day = date('d', $time);
$uploaddir = SHOPPIC_DIR;
$pic_array = array();
foreach ($file as $k => $v) {
$upload = new UploadFile();
$upload->set('default_dir', $uploaddir);
$result = $upload->upfile($k);
if ($result) {
$sizeinfo = getimagesize($uploaddir . DS . $upload->file_name);
$pic_array[] = array($upload->file_name, $v['name'], $v['size'], $sizeinfo[0]);
unset($sizeinfo);
}
unset($upload);
}
return $pic_array;
}
return array();
}
示例12: upload
function upload()
{
$path = str_replace('admin/api/', '', CFG_PATH_ROOT) . 'images/merchants/' . date('ymd', time()) . "/";
$httpPath = 'images/merchants/' . date('ymd', time()) . "/";
$thumbnail_path = $path . "thumbnail/";
require CFG_PATH_ROOT . 'lib/util/UploadFile.class.php';
require CFG_PATH_ROOT . 'lib/util/Image.class.php';
$upload = new UploadFile();
$image = new Image();
try {
$filePaths = array();
if (!is_array($_FILES['upload']['error'])) {
$filePaths[] = $path . $upload->upload($_FILES['upload'], $path, 1);
} else {
foreach ($_FILES['upload']['error'] as $k => $v) {
$file["error"] = $_FILES['upload']['error'][$k];
$file["name"] = $_FILES['upload']['name'][$k];
$file["size"] = $_FILES['upload']['size'][$k];
$file["tmp_name"] = $_FILES['upload']['tmp_name'][$k];
$file["type"] = $_FILES['upload']['type'][$k];
$file_path = $upload->upload($file, $path, 1);
//$result = $image->scale($path . $file_path, $thumbnail_path . $file_path, 960, 960);
$filePaths[] = $httpPath . $file_path;
}
}
echo $this->json->encode(array("success" => true, "paths" => $filePaths));
exit;
} catch (Exception $e) {
echo $this->json->encode(array('success' => false, 'error' => $e->getMessage()));
exit;
}
}
示例13: up
private function up()
{
//完成与thinkphp相关的,文件上传类的调用
import('@.Org.UploadFile');
//将上传类UploadFile.class.php拷到Lib/Org文件夹下
$upload = new UploadFile();
$upload->maxSize = '1000000';
//默认为-1,不限制上传大小
$upload->savePath = './Data/upload/';
//保存路径建议与主文件平级目录或者平级目录的子目录来保存
$upload->saveRule = uniqid;
//上传文件的文件名保存规则
$upload->uploadReplace = true;
//如果存在同名文件是否进行覆盖
$upload->allowExts = array('jpg', 'jpeg', 'gif', 'png', 'xls', 'xlsx', 'rar', 'zip', 'ppt', 'doc', 'docx');
//准许上传的文件类型
$upload->allowTypes = array('image/png', 'image/jpg', 'image/jpeg', 'image/gif');
//检测mime类型
$upload->thumb = true;
//是否开启图片文件缩略图
$upload->thumbMaxWidth = '300,500';
$upload->thumbMaxHeight = '200,400';
$upload->thumbPrefix = 's_,m_';
//缩略图文件前缀
$upload->thumbRemoveOrigin = 1;
//如果生成缩略图,是否删除原图
if ($upload->upload()) {
$info = $upload->getUploadFileInfo();
return $info;
} else {
$this->error($upload->getErrorMsg());
//专门用来获取上传的错误信息的
}
}
示例14: upload
public function upload($id = 0)
{
import('ORG.Net.UploadFile');
$upload = new UploadFile();
// 实例化上传类
$upload->maxSize = 3145728;
// 设置附件上传大小
$upload->allowExts = array('jpg');
// 设置附件上传类型
$upload->savePath = '/var/www/html/goj/Tpl/Public/Uploads/';
// 设置附件上传目录
$name = time() . '_' . mt_rand();
$upload->saveRule = $name;
if (!$upload->upload()) {
// 上传错误提示错误信息
$this->error($upload->getErrorMsg());
} else {
// 上传成功
if ($id == 0) {
$this->success('上传成功!', 'http://222.202.171.23/Problem/add/img/' . $name);
} else {
$this->success('上传成功!', 'http://222.202.171.23/Problem/edit/id/' . $id . '/img/' . $name);
}
}
}
示例15: saveBasic_Pic
public function saveBasic_Pic()
{
$sqlGood = new sql_goodMod();
$g_id = $this->in_post('id', None, 1, 'True');
$a_id = $this->in_cookie('aid', None, 1, 'True');
$upload = new UploadFile();
//设置上传文件大小
$upload->maxSize = 1024 * 1024 * 2;
//最大2M
//设置上传文件类型
$upload->allowExts = explode(',', 'jpg,gif,png');
//设置附件上传目录
$upload->savePath = '../public/image/';
$upload->saveRule = cp_uniqid;
if (!$upload->upload()) {
//捕获上传异常
$error_res = $this->error($upload->getErrorMsg());
dump($error_res);
} else {
//取得成功上传的文件信息
$up_res = $upload->getUploadFileInfo();
}
$ex_path = 'image/';
$update_res = $sqlGood->set_brand_info_pic($a_id, $g_id, $ex_path . $up_res[0]['savename']);
if ($update_res) {
$this->alert('更新成功');
} else {
$this->alert('更新失败');
}
}