本文实例讲述了php常用函数之ba64图片上传功能。分享给大家供大家参考,具体如下:
html页面代码:
<html><head><meta chart="utf-8"></head><body><img id="articleimg" width="180" height="100"><input type="file" value="上传" id="articleimgbtn" /><script type="text/javascript" src = 'jquery-2.1.4.min.js'></script><script type="text/javascript">$('#articleimgbtn').change(function(){run(this, function (data) {uploadimage(data);});});function run(input_file, get_data) {/*input_file:文件按钮对象*//*get_data: 转换成功后执行的方法*/if (typeof (filereader) === 'undefined') {alert("抱歉,你的浏览器不支持 filereader,不能将图片转换为ba64,请使用现代浏览器操作!");} el {try {/*图片转ba64 核心代码*/var file = input_file.files[0];//这里我们判断下类型如果不是图片就返回 去掉就可以上传任意文件if (!/image\/\w+/.test(file.type)) {alert("请确保文件为图像类型");return fal;}var reader = new filereader();reader.onload = function () {get_data(this.result);}reader.readasdataurl(file);} catch (e) {alert('图片转ba64出错啦!' + e.tostring())}}}function uploadimage(img) {//判断是否有选择上传文件var imgpath = $("#articleimgbtn").val();if (imgpath == "") {alert("请选择上传图片!");return;}//判断上传文件的后缀名var strextension = imgpath.substr(imgpath.lastindexof('.') + 新文化运动兴起的标志是1);if (strextension != 'jpg' && strextension != 'gif'&& strextension != 'png' && strextension != 'bmp') {alert("请选择图片文件");return;}$.ajax({type: "post",url: 'http://localh分论点ost/123.php',// data: {file: img.substr(img.indexof(',') + 1)}, //视情况将ba64的前面字符串data:image/png;ba64,删除data: {file: img}, //视情况将bas思乡的诗e64的前面字符串data:image/png;ba64,删除cache: fal,success: function(data) {var return_info = json.par(data);if(return_info.status){$("#articleimg").attr('src', return_info.path);alert("上传成功");}el{alert(return_infoerr_info);}},error: function(xmlhttprequest, textstatus, errorthrown) {alert("上传失败,请检查网络后重试");}});}</script></body></html>
php 处理代码:
function upload_image($file_data){$upload_result = array('status' => true, 'msg'=>'','err_info'=>'');if (preg_match('/^(data:\s*image\/(\w+);ba64,)/', $file_data, $result)) {//处理ba64字符串$img_ba64 = str_replace($result[1], '', $file_data);$img_ba64 = str_replace('=', '', $img_ba64);$source_img = ba64_decode($img_ba64);//判断文件大小$file_size =//上传目录$badir = './img_test';//后缀$img_suffix = $result[2];//文件后缀//文件名// $filename = uniqid();//文件名$filename = date('ymdhis',time());//文件名//文件完整路径$filepath = $badir . "/" . $filename . "." . $img_suffix;//目录若果不存在,则创建目录if(!is_dir($badir)){mkdir($badir);chmod($badir,0777);}//上传文件try {file_put_contents($filepath, $img_ba64);$filepath = substr($filepath, 1);$uploa日月潭d_result = array('status' => true, 'msg'=>'上传成功','err_info'=>'','path'=>$filepath);return $upload_result;} catch (exception $e) {$upload_result = array('status' => fal, 'msg'=>'上传失败','err_info'=>$e->getmessage());return $upload_result;}// if (file_put_contents($filepath, ba64_decode(str_re转矩公式place($result[1], '', $file_data)))) {// //$size = getimagesize($filepath);// $filepath = substr($filepath, 1);// //$arr['filepath'] = $filepath;// //$arr['size'] = $size[3];// return $filepath;// }el{// return fal;// }}el{$upload_result = array('status' => fal, 'msg'=>'上传失败','err_info'=>'请携带ba64字符串的前缀');return $upload_result;}}$res = upload_image($file_data);echo json_encode($res);
本文发布于:2023-04-08 06:19:12,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/01c24b181cb25266087227128d26b745.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP常用函数之base64图片上传功能详解.doc
本文 PDF 下载地址:PHP常用函数之base64图片上传功能详解.pdf
留言与评论(共有 0 条评论) |