最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php无刷新利用iframe实现页面无刷新上传文件
时间:2022-06-24 18:24:02 编辑:袖梨 来源:一聚教程网
利用form表单的target属性和iframe
一、上传文件的一个php教程方法。
该方法接受一个$file参数,该参数为从客户端获取的$_files变量,返回重新命名后的文件名,如果上传失败,则返回空字符串。
php代码
function uploadfile($file) {
// 上传路径 $destinationpath = "./upload/";
if (!file_exists($destinationpath)){
mkdir($destinationpath , 0777); }
//重命名
$filename = date('ymdhis') . '_' . iconv('utf-8' , 'gb2312' , basename($file['name']));
if (move_uploaded_file($file['tmp_name'], $destinationpath . $filename)) { return iconv('gb2312' , 'utf-8' , $filename);
} return '';
}
二、客户端html代码
这里正是技巧所在,添加另一个iframe来实现。表单标签form定义了一个属性target,该属性解释如下:
[pre]target属性:
_blank ---------- 新开窗口
_self ----------- 自身
_top ------------ 主框架
_parent --------- 父框架
自定义名字 ----- 出现于框架结构,将会在该名称的框架内打开链接
本例中采用iframe名字,所以表单在提交时会在iframe内打开链接(即无刷新,确切的说应该是
感觉无刷新)
在表单提交时,调用startupload方法,当然这是js定义的。
[/pre][pre]此外我们还定义一个span来显示提示信息。代码如下:
[/pre]xhtml代码
这部分比较简单,只是显示提示信息
网页特效代码
function startupload() {
var spanobj = document.getelementbyid("info"); spanobj.innerhtml = " 开始上传";
}
function stopupload(responsetext){ var spanobj = document.getelementbyid("info");
spanobj.innerhtml = " 上传成功; spanobj.innerhtml = responsetext;
}
接下来就要看服务器端得处理了。
四、服务器段处理部分
php代码
$file = $_files['myfile']; $filename = uploadfile($file);
$result = readfromfile("./upload/" . $filename);
此外在后面还应该加上一句js代码用来调用stopupload方法。
javascript代码
window.top.window.stopupload("");
最后在补上php中的readfromfile方法,就大功告成了。
php代码
function readfromfile($target_path) {
// 读取文件内容 $file = fopen($target_path,'r') or die("unable to open file");
$filecontent = ''; while(!feof($file))
{ $str = fgets($file);
$filecontent .= $str; }
fclose($file); return $filecontent;
}
相关文章
- 人们熟悉的寄居蟹属于以下哪种分类 神奇海洋11月21日答案 11-21
- 第五人格11.22共研服有什么更新 11月22日共研服更新内容介绍 11-21
- 原神恰斯卡怎么培养 11-21
- 无期迷途四星装束是谁 11-21
- 王者荣耀帝丹高中校服怎么获得 11-21
- 光遇姆明季后续版本怎么玩 11-21