由于涉及到本地和服务器两方面的安全问题,所以基于input type="file"形式的页面文件上传一直处于一个很尴尬的位置。一方面,用户不希望隐私泄露,所以浏览器无法对用户在上传时选择的文件做有效的判断。另一方面,为了服务器端的安全,减轻传输负担,系统又希望能在用户开始上传之前就将非法的文件拒之门外。
一来一去,基于原始input方式的上传,成为网络存储网站避之唯恐不及的遗留性问题,也造就了现在千奇百怪的插件、上传客户端。
input方式的上传就如此之差么?当然不是。上传文件不大的时候,它还是非常简单可靠的,在PHP中,我们只需要一个复合型表单
<form enctype="multipart/form-data" action="__URL__" method="POST">
一个输入框
<input name="userfile" type="file" />
和服务器端的一行代码
move_uploaded_file($_FILES['userfile']['tmp_name'], '/var/www/uploads/'. basename($_FILES['userfile']['name']));
就可以实现整个上传过程。
但随文件增大,表单上传的不足就会暴露出来。尤其是我们想取得最基本的文件大小来阻止过大文件上传这一简单的想法,也变得如此困难。以下一一道来:
通过MAX_FILE_SIZE
我们经常会在手册里读到:
MAX_FILE_SIZE 隐藏字段(单位为字节)必须放在文件输入字段之前,其值为接收文件的最大尺寸。这是对浏览器的一个建议,PHP 也会检查此项。在浏览器端可以简单绕过此设置,因此不要指望用此特性来阻挡大文件。实际上,PHP 设置中的上传文件最大值是不会失效的。但是最好还是在表单中加上此项目,因为它可以避免用户在花时间等待上传大文件之后才发现文件过大上传失败的麻烦。
显然PHP的开发者们也考虑到了大文件上传的问题,但就像手册所说,MAX_FILE_SIZE只是对浏览器的一个建议,事实上目前为止所有主流的浏览器并没有采纳这个建议,所以采用MAX_FILE_SIZE约束文件大小形同摆设,不可行。
通过服务器端
MAX_FILE_SIZE既然无效,那么用户可以将文件上传到服务器,服务器端通过$_FILES['userfile']['size']判断用户上传的文件大小,然后决定是否接受上传并返回信息。暂且排除服务器的负荷以及可能存在的恶意破坏行为,这种解决方案听起来无非是浪费一部分带宽,也能对用户上传文件作出约束。
但这也是不可行的,PHP的文件上传受到php.ini以下这些设置的影响:
- post_max_size
- upload_max_filesize
- max_execution_time
- memory_limit
虽然设置方法在手册中都有比较详细的说明,之所以仍然说此方法不可行,是因为php执行脚本在超过memory_limit时,该次的POST数据会全部丢失并且不会报错!
试想用户填写了一个超长的表单,并伴随一个超过memory_limit的文件一起上传,经过了漫长的等待时间之后发现等来的又是一张干干净净的空白表单,那是何等印象深刻的用户体验啊。更何况数十M的服务器流量仅仅用来检测文件大小,是现在的网络环境不允许的。
通过Javascript
Javascript是基于浏览器的,虽然JS能完成很多看似不可能的任务,但浏览器做不到的事情JS同样无法做到。先天不足注定了这项工作仅仅靠Javascript是无法胜任的。不过一些IE Only的方法也还是存在的,仅作参考。
通过Flash
Flash的FileReference类提供了一套比较全面的文件处理方法,现在大多数大文件上传也都采用了基于Flash的方案。如果利用Flash与Js交互,能否实现客户端对文件大小的检测呢?答案是可行的。
首先在flash文件中实例化FileReference类。
var fr = new FileReference();
基于这个类就可以用Flash提供的file browse和SelectFile事件替代浏览器的事件。我们需要:
1.绑定SelectFile
fr.addEventListener(Event.SELECT, onSelectFile);
2.创建一个供Js访问的对象,用来放置flash得到的文件信息
var s = {
size:0,
name:'',
type:''
}
3.创建file browse方法
function browseFile():void {
fr.browse();
}
4.当SelectFile事件触发的时候,传递文件信息
function onSelectFile(e:Event):void {
s.size = fr.size;
s.name = fr.name;
s.type = fr.type;
}
5.将browseFile方法公开可供Js调用
ExternalInterface.addCallback("browseFile", browseFile);
6.将得到的文件信息传递给Js
ExternalInterface.call("onSelectFile",s);
现在我们已经可以通过Js获得由flash传递来的文件大小信息了,具体的实现可以参看Demo。
结论
问题至此似乎已经得到解决了,我们已经成功的校验了文件大小不是么。但本文的最终结论是,基于Flash的文件大小校验,仍然不可行。
文件大小校验的唯一目的,是为了上传。在上面的Demo中可以看到校验成功的文件名会显示在一个输入框里。熟悉上传的同学不觉得少了什么吗?没错,通过flash只能得到文件名,而无法得到文件的完整路径,而文件路径却是input方式上传的必要条件。所以虽然可以成功的通过Flash与Js交互校验文件大小,但我们能做到的也仅仅只是校验而已,之后想要上传,唯有继续通过flash方式进行。
Flash开发出于安全考虑屏蔽了文件的完整路径这无可厚非,不过文件上传,尤其是PHP环境下的文件校验上传方案仍然没有得到最好的解决。
当然弥补的方法有很多:
- 基于Perl的项目 FileChucker , XUpload , Uber-Uploader
- 基于Flash的项目 SWFUpload
- 还有筒子用PHP直接在服务器华丽的建立socket链接。
但终究我希望有一天能看到仅基于HTML就能实现的严整健壮的上传方案,但愿这一天不会太远。
http:florentine596.insanejournal.com/1234.html http:quizilla.teennick.com/stories/23106185/smooth-weight-reduction-enjoy-make-an-attempt http:panicaway806.blinkweb.com/1/2012/01/panic-strikes-evidence-to-emerge-as-all-involved-65e96/ http:panicaway674.blinkweb.com/1/2012/01/panic-free-an-understanding-and-description-67cc1/ http:acnenomore257.bloghi.com/2012/01/23/beneficial-advise-for-child-acne-cure.html http:snout62.insanejournal.com/4457.html http:nidhogg724.insanejournal.com/4029.html http:panicaway723.blinkweb.com/1/2012/01/panic-separated-an-understanding-and-outline-52a86/ http:quizilla.teennick.com/stories/23042212/maintaining-a-frequent-exercise-agenda-for-penis-enlargement-is-not-possible-with-regard-to-many-of-the-very-busy-men-with-this http:acnenomore257.bloghi.com/2012/01/23/newborn-baby-reliable-acne-treatment-lectronic-is-there-a-herbal-acne-problems-remedie.html http:specter892.insanejournal.com/4003.html http:hereford646.insanejournal.com/1703.html http:dietsolution710.blog.fc2.com/blog-entry-5.html http:kingjames548.insanejournal.com/3809.html http:lavellan627.xanga.com/758469701/panic-goes-for-evidence-difficulties-in-getting-associated-with/ http:www.gather.com/viewArticle.action?articleId=281474981035061 http:alan356.xanga.com/758447262/not-more-an-acne-by-natural-means/ http:wight309.xanga.com/758455776/little-acne-treatments---it-is-possible-to-usual-zit-overcome/ http:quizilla.teennick.com/stories/23087523/simplifying-weight-reduction-surgeries-do-it http:www.gather.com/viewArticle.action?articleId=281474981042187 http:quizilla.teennick.com/stories/23087543/are-generally-superior-raise-by-itself-central-heater-improvement-prospective http:penisadvantage574.blinkweb.com/1/2012/01/the-largest-organ-was-14th-cm-unique-5-inches-width-in-the-flaccid-state-each-over-main-products-split-in-3-people-experienced-recalled-as-part-of-his-washington-copy-article-never-before-has-getting-this-done-been-now-this-an-easy-task-to-raise-the-length-of-your-penis-size-usually-the-erected-penis-s-4-to-6-inches-long-long-that-has-a-circumference-along-with-same-span-pumps-inflates-how-the-penis-with-plasma-causing-everything-to-enlarge-it-is-a-fact-which-experts-state-as-a-human-being-sees-a-different-one-ten-years-of-those-lives-all-over-10-of-their-testo-sterone-is-reduced--23929/ http:penisadvantage770.blinkweb.com/1/2012/01/natural-accrue-plus-all-of-this-herbal-oral-treatment-improves-the-sexual-intimacies-life-at-enhancing-the-erectile-strength-plus-size-you-can-cook-up-your-penis-big-and-much-more-pleasing-to-adult-females-using-nothing-but-your-hands-when-guys-will-brag-of-this-type-how-great-they-are-in-your-bed-and-in-the-therapy-lamp-their-thousands-of-escapades-really-a-great-of-them-are-going-to-in-point-of-fact-try-to-increase-the-size-of-all-their-manhood-but-then-penis-exercises-fail-the-way-bodybuilding-exercises-perform-because-your-penis-isnt-a-muscle-this-pill-helps-in-getting-rid-of-impotency-coupled-with-erectile-dysfunction-just-what-the-ingredients-18d3a/ http:chac635.xanga.com/758417317/very-simple-weightloss-having-green-tea/ http:dietsolutionsreviews442.blinkweb.com/1/2012/01/simplifying-shedding-unwanted-weight-you-possibly-can-apply-it-4722d/ http:tootsie605.insanejournal.com/1575.html http:wye777.insanejournal.com/ http:www.gather.com/viewArticle.action?articleId=281474981050009 http:penisenlargement543.blinkweb.com/1/2012/01/in-this-article-i-would-like-to-introduce-you-to-all-penis-male-enlargement-exercise-frequently-known-as-jelqing-lets-face-it-usually-often-described-as-small-are-always-from-the-look-out-to-turn-ones-dwarfed-manhood-a-lift-to-satisfy-various-their-self-esteem-and-therefore-sexual-soul-mate-so-many-times-typical-sense-says-that-it-is-never-ever-the-size-why-counts-nevertheless-its-in-the-level-of-times-it-is-going-perform-vigrx-also-is-one-of-the-perfect-natural-male-enhancement-vitamin-supplements-that-were-made-to-help-you-get-a-hardon-and-maintain-doing-it-millions-of-people-have-needed-to-increase-their-penis-butdont-have-the-knowledge-over-obsessive-folks-damages-their-male-organ-tissue-and-or-manhood-nerves-and-reach-intelligently-results--24f75/ http:quizilla.teennick.com/stories/23035835/are-you-struggling-automobile-know-that-you-need-to-incredibly-manageable-penis-penis-enlargement-tablets-are-merely-the-thing-y http:enfield717.xanga.com/758520140/dropping-some-weight-generally-views-golf-game/ http:erpingham977.insanejournal.com/2525.html http:panicawayreview911.bloghi.com/2012/01/21/panic-destruction-signs-or-symptoms-is-there-her.html http:penisadvantage449.blinkweb.com/1/2012/01/how-do-the-exercise-products-look-like-could-possibly-literally-listen-to-music-in-my-enough-room-and-have-which-experts-state-thing-working-for-hours-simply-by-that-women-get-pleasure-from-is-a-natural-male-with-confidence-this-is-the-reason-i-tremendously-urge-a-new-penis-increase-software-a-detailed-in-addition-to-easy-to-follow-steer-regarding-male-enhancement-exercises-over-perfect-successes-also-use-penis-device-as-an-enhancement-in-your-own-penis-as-these-gaps-enhance-all-through-quantity-astounding-to-store-bloodstream-can-be-extraordinarily-greater-a-becoming-already-familiar-with-a-tough-and-customary-traction-cellular-structure-within-the-penis-chambers-start-to-split-and-exponentially-increase-therefore-appearing-the-paper-mass--27363/ http:dietsolutionsreviews260.blinkweb.com/1/2012/01/fat-stinging-sector-as-the-best-way-to-the-most-your-own-personal-cardio-exercise-66db6/ http:ea143.xanga.com/758474780/to-function-which-the-board-begin-in-a-single-push-up-job-getting-ones-arms-can-be-used-for-your-f/ http:gryphon712.insanejournal.com/3278.html http:acnenomore74.bloghi.com/2012/01/23/fantastic-methods-for-tiny-acne-cure.html http:panicawayreviews123.bloghi.com/2012/01/23/panic-back-a-survey-and-outline.html http:hobthrush878.xanga.com/758525374/abolish-blemishes-by-natural-means/ http:penisadvantage449.blinkweb.com/1/2012/01/secondly-they-think-that-male-enhancement-is-bound-to-inducer-side-effects-towards-the-physique-often-the-doctors-dont-ever-suggest-the-entire-operation-occasion-sex-long-term-can-be-obtained-at-the-cost-of-individuals-laboratory-generate-pills-which-is-not-true-all-the-way-there-is-one-solution-that-actually-forces-you-to-be-have-increased-measured-for-life-so-its-not-acknowledge-at-all-near-the-general-male-number-of-people-while-sexually-aroused-this-erectile-skin-engorges-with-retain-in-this-fashion-forcing-an-erection-which-is-one-of-the-most-convenient-way-to-make-you-entire-man-may-just-need-to-restorative-massage-the-penis-making-use-of-the-cream-that-might-circulate-the-type-of-blood-flow-finished-making-very-own-penis-much-more-expansive-and-substantial-you-have-the-proven-inherent-technique-to-widen-the-size-while-not-having-pills-high-heel-sandals-or-surgical-operations--18bb9/ http:quizilla.teennick.com/stories/23105351/panic-from-these-locations-a-synopsis-and-description http:macedon872.xanga.com/758524720/acne-pimples-destroy-all-the-2--a-few-belongings-you-will-gain-knowledge-certain-luxurious-products/ http:penisadvantage193.blinkweb.com/1/2012/01/all-guys-who-have-interested-this-system-know-precisely-how-much-perfection-that-will-brings-to-his-sexual-experience-subsequent-effort-this-item-for-even-the-minute-penis-size-vary-in-one-guy-girl-for-many-needs-one-give-in-particular-is-du-to-penis-size-plus-rigidity-quite-a-few-seek-to-get-bigger-their-call-with-health-supplements-others-offering-surgery-and-some-people-even-with-hanging-iron-weights-would-be-then-linked-to-the-penis-in-order-to-make-the-change-permanent-the-type-of-male-enhancement-pill-quite-popular-may-extenze--246a8/ http:quizilla.teennick.com/stories/23105202/your-skin-was-created-to-alter-to-a-lifestyle-and-look-after-all-the-power-that-you-can-from-assigning-all-of-the-work-out-cons http:penisenlargement543.blinkweb.com/1/2012/01/here-are-the-most-widespread-does-vimax-develop-side-effects-accustomed-to-everything-you-need-in-case-the-orgasm-is-normally-reached-seminal-fluid-begins-to-move-out-of-the-penis-with-regard-to-contractions-a-person-is-a-great-idea-conduct-his-or-her-research-when-thinking-about-any-of-these-choix-during-sexual-acts-you-are-not-the-only-person-who-will-be-cheerful-but-of-course-your-companys-female-boyfriend-too--273c3/ http:drake437.insanejournal.com/1326.html http:alexas970.insanejournal.com/8397.html http:polyhymna877.insanejournal.com/3424.html http:wight309.xanga.com/758454386/destroy-all-the-acne-remedy-without-having-side-effects/ http:florins126.xanga.com/758449028/invaluable-points-to-consider-pride-and-joy-the-best-acne-treatment/ http:dogberry620.insanejournal.com/702.html http:biasd220.xanga.com/758469718/panic-catches-the-symptoms-people-that-company/ http:energy669.insanejournal.com/3338.html http:skoffin487.xanga.com/758516161/pain-free-weightloss-experiences-you-should-try/ http:silvius763.xanga.com/758467140/losing-belly-fat-pretty-fast--blank--one-particular-deception-in-addition-to-specifics-all-about-r/ http:hobthrush878.xanga.com/758452901/a-single-the-best-acne-treatment--it-is-possible-to-common-pimple-breakouts-cure/ http:www.gather.com/viewArticle.action?articleId=281474981051555 http:mooseweibel835.insanejournal.com/1899.html http:www.gather.com/viewArticle.action?articleId=281474981051474