Heim >Backend-Entwicklung >PHP-Tutorial >php程序中应用swfupload下传关于SESSION的有关问题

php程序中应用swfupload下传关于SESSION的有关问题

WBOY
WBOYOriginal
2016-06-13 10:45:30964Durchsuche

php程序中应用swfupload上传关于SESSION的问题
SWFUpload在上传时重新开辟了一个新的Session进程,无法与原有程序的Session保持一致,需要在上传时传递原有程序的SessionID,根据它来“找回”其应有的Session
但是我怎么弄都无法找到。有没有朋友知道的,帮帮忙。谢谢了。我用的是DEDECMS的程序。

这是Swfupload中开辟的SEEEION。

JScript code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->upload_url: "upload.php",        post_params: {"PHPSESSID" : "<?php echo session_id(); ?>"},        file_size_limit : "2048",        file_types : "*.jpeg;*.jpg;*.bmp;*.png;*.gif;*.flv;*.mp4;*.wma",        file_types_description : "允许上传的格式",        file_upload_limit : "100",        file_queue_limit : "0",


这是upload.php处理页的信息

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->if (isset($_POST["PHPSESSID"])) {        session_id($_POST["PHPSESSID"]);    } else if (isset($_GET["PHPSESSID"])) {        session_id($_GET["PHPSESSID"]);    }    $img_path = '/uploads/';    session_start();


我应该怎么去获取那个SESSION,并判断用户是否有登录权限来上传文件呢,知道的朋友告诉一下,拜托了。

------解决方案--------------------
session_start();往顶上放放
------解决方案--------------------
你下載我的範例吧
http://download.csdn.net/detail/sibang/4538151
這個範例好像整合了sessionid傳遞的部份.
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php抉择目录Nächster Artikel:关于gd类库中的imagecreate()解决方法