更改xhEditor 上传文件upload.php
更改xhEditor 上传文件upload.php
把上传完的图片路径改为 http 路径
PHP代码
<?php /*! * 注2:本程序特别针对HTML5上传,加入了特殊处理 */ header('Content-Type: text/html; charset=UTF-8'); //------定义http路径 $url='http://'.$_SERVER['SERVER_NAME'].$_SERVER["REQUEST_URI"]; $dir_url_http=dirname($url).'/'; //------------------------------------- $inputName='filedata';//表单文件域name $attachDir='upload';//上传文件保存路径,结尾不要带/ $dirType=1;//1:按天存入目录 2:按月存入目录 3:按扩展名存目录 建议使用按天存 $maxAttachSize=2097152;//最大上传大小,默认是2M $upExt='txt,rar,zip,jpg,jpeg,gif,png,swf,wmv,avi,wma,mp3,mid';//上传扩展名 $msgType=2;//返回上传参数的格式:1,只返回url,2,返回参数数组 $immediate=isset($_GET['immediate'])?$_GET['immediate']:0;//立即上传模式,仅为演示用 ini_set('date.timezone','Asia/Shanghai');//时区 $err = ""; $msg = "''"; $tempPath=$attachDir.'/'.date("YmdHis").mt_rand(10000,99999).'.tmp'; $localName=''; if(isset($_SERVER['HTTP_CONTENT_DISPOSITION'])&&preg_match('/attachment;\s+name="(.+?)";\s+filename="(.+?)"/i',$_SERVER['HTTP_CONTENT_DISPOSITION'],$info)){//HTML5上传 file_put_contents($tempPath,file_get_contents("php://input")); $localName=urldecode($info[2]); } else{//标准表单式上传 $upfile=@$_FILES[$inputName]; if(!isset($upfile))$err='文件域的name错误'; elseif(!empty($upfile['error'])){ switch($upfile['error']) { case '1': $err = '文件大小超过了php.ini定义的upload_max_filesize值'; break; case '2': $err = '文件大小超过了HTML定义的MAX_FILE_SIZE值'; break; case '3': $err = '文件上传不完全'; break; case '4': $err = '无文件上传'; break; case '6': $err = '缺少临时文件夹'; break; case '7': $err = '写文件失败'; break; case '8': $err = '上传被其它扩展中断'; break; case '999': default: $err = '无有效错误代码'; } } elseif(empty($upfile['tmp_name']) || $upfile['tmp_name'] == 'none')$err = '无文件上传'; else{ move_uploaded_file($upfile['tmp_name'],$tempPath); $localName=$upfile['name']; } } if($err==''){ $fileInfo=pathinfo($localName); $extension=$fileInfo['extension']; if(preg_match('/^('.str_replace(',','|',$upExt).')$/i',$extension)) { $bytes=filesize($tempPath); if($bytes > $maxAttachSize)$err='请不要上传大小超过'.formatBytes($maxAttachSize).'的文件'; else { switch($dirType) { case 1: $attachSubDir = 'day_'.date('ymd'); break; case 2: $attachSubDir = 'month_'.date('ym'); break; case 3: $attachSubDir = 'ext_'.$extension; break; } $attachDir = $attachDir.'/'.$attachSubDir; if(!is_dir($attachDir)) { @mkdir($attachDir, 0777); @fclose(fopen($attachDir.'/index.htm', 'w')); } PHP_VERSION < '4.2.0' && mt_srand((double)microtime() * 1000000); $newFilename=date("YmdHis").mt_rand(1000,9999).'.'.$extension; $targetPath = $attachDir.'/'.$newFilename; rename($tempPath,$targetPath); @chmod($targetPath,0755); $targetPath=jsonString($targetPath); if($immediate=='1')$targetPath='!'.$targetPath; if($msgType==1)$msg="'$targetPath'"; else $msg="{'url':'".$dir_url_http.$targetPath."','localname':'".jsonString($localName)."','id':'1'}";//id参数固定不变,仅供演示,实际项目中可以是数据库ID } } else $err='上传文件扩展名必需为:'.$upExt; @unlink($tempPath); } echo "{'err':'".jsonString($err)."','msg':".$msg."}"; function jsonString($str) { return preg_replace("/([\\\\\/'])/",'\\\$1',$str); } function formatBytes($bytes) { if($bytes >= 1073741824) { $bytes = round($bytes / 1073741824 * 100) / 100 . 'GB'; } elseif($bytes >= 1048576) { $bytes = round($bytes / 1048576 * 100) / 100 . 'MB'; } elseif($bytes >= 1024) { $bytes = round($bytes / 1024 * 100) / 100 . 'KB'; } else { $bytes = $bytes . 'Bytes'; } return $bytes; } ?>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article
What's New in Windows 11 KB5054979 & How to Fix Update Issues
3 weeks ago
By DDD
How to fix KB5055523 fails to install in Windows 11?
2 weeks ago
By DDD
InZoi: How To Apply To School And University
3 weeks ago
By DDD
How to fix KB5055518 fails to install in Windows 10?
2 weeks ago
By DDD
Roblox: Dead Rails – How To Summon And Defeat Nikola Tesla
4 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
