我可以通过其ID恢复PHP会话吗? [英] Can I restore a PHP SESSION by its ID?

查看:155
本文介绍了我可以通过其ID恢复PHP会话吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我用uploadify插件上传文件。
PHP SESSION在上传过程中丢失了,有没有办法恢复会话?
也许通过它的id?

解决方案

是的。你需要添加一个选项来上传:

  $('#upload')。uploadify({
'scriptData ':{'session_name':<?php echo session_id();?>}
});

您需要将其添加到您的PHP中:

 <?php 
session_id($ _ POST ['session_name']);
session_start();
?>

然后一切都会如预期的那样。


Im uploading files with the uploadify plugin. the PHP SESSION is lost during upload, is there a way to restore the session? Perhaps by its id?

解决方案

Yes. You need to add an option to uploadify:

$('#upload').uploadify({
    'scriptData':{'session_name':"<?php echo session_id(); ?>"}
});

And you need to add this to your PHP:

<?php
session_id($_POST['session_name']);
session_start();
?>

Then everything will be as expected.

这篇关于我可以通过其ID恢复PHP会话吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆