我是靠谱客的博主 光亮机器猫,最近开发中收集的这篇文章主要介绍php上传文件回显,php 使用dropzonejs拖拽文件上传,如何将处理结果回显到当前页的textarea中?...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

修改了下dropzonejs的demo上传页面:(原地址:http://www.dropzonejs.com/exa...)加了个textarea,想实现文件上传处理完成后将处理结果回显到textarea内,请问该如何处理?

以下是index.php文件内容:

Dropzone simple example

This is the most minimal example of Dropzone. The upload in this example

doesn't work, because there is no actual server to handle the file upload.

以下是upload_file.php文件内容:

0) {

echo "Error: " . $_FILES["file"]["error"] . "

";

} else {

echo "Upload: " . $_FILES["file"]["name"] . "

";

echo "Type: " . $_FILES["file"]["type"] . "

";

echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb

";

echo "Stored in: " . $_FILES["file"]["tmp_name"];

$content = file_get_contents($_FILES["file"]["tmp_name"]);

echo $content;

}

?>

回复内容:

修改了下dropzonejs的demo上传页面:(原地址:http://www.dropzonejs.com/exa...)加了个textarea,想实现文件上传处理完成后将处理结果回显到textarea内,请问该如何处理?

以下是index.php文件内容:

Dropzone simple example

This is the most minimal example of Dropzone. The upload in this example

doesn't work, because there is no actual server to handle the file upload.

以下是upload_file.php文件内容:

0) {

echo "Error: " . $_FILES["file"]["error"] . "

";

} else {

echo "Upload: " . $_FILES["file"]["name"] . "

";

echo "Type: " . $_FILES["file"]["type"] . "

";

echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb

";

echo "Stored in: " . $_FILES["file"]["tmp_name"];

$content = file_get_contents($_FILES["file"]["tmp_name"]);

echo $content;

}

?>

可以通过ajax获取上传后的图片地址,然后显示

本文原创发布php中文网,转载请注明出处,感谢您的尊重!

最后

以上就是光亮机器猫为你收集整理的php上传文件回显,php 使用dropzonejs拖拽文件上传,如何将处理结果回显到当前页的textarea中?...的全部内容,希望文章能够帮你解决php上传文件回显,php 使用dropzonejs拖拽文件上传,如何将处理结果回显到当前页的textarea中?...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部