• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
不要清闲
博客园    首页    新随笔    联系   管理    订阅  订阅

php session偶尔写入失败的原因

session_start();

var_dump($_SESSION);

$key = sprintf('%05d', mt_rand(0, 99999));
$key = strval($key);
$val = time();

$_SESSION[$key] = $val;

这是我的代码,经测试后大部分情况下无法输出刚才设置的session,那就是写入失败了。

我百思不得其解,如果说失败的话都要失败,为何偶尔还有成功的呢?

后来单独测试的时候把error_reporting 全部打开了,发现提示这样的错误

 Notice: Unknown: Skipping numeric key 454352 in Unknown on line 0

经查证,为如下原因

The PHP session storage mechanism was originally built around "registering" variables, so the keys in $_SESSION must be names that could be treated as variables in their own right.

This means that $_SESSION[42] is invalid, because $42 wouldn't be a valid variable name, and since $foo[42] and $foo['42'] refer to the same thing, $_SESSION['42'] is invalid as well.

The solution is either to use a prefix on your session variables (e.g. $_SESSION['row_count_' . $x] = $row['Count'];) or make them into an array, which you can then loop over etc later (e.g. $_SESSION['row_counts'] = array(); ... $_SESSION['row_counts'][$x] = $row['Count'];)

Note: this limitation is actually part of the "serialization handler" used when writing the session to disk, which is why the errors have no context (they're fired while PHP is shutting down). In very recent versions of PHP there is a setting of session.serialize_handler which doesn't have this limitation

309007 6126gvsg 18616126356 1422322650 v5pdyh9S7eyD

posted on 2014-12-17 09:11  不要清闲  阅读(1571)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2026
浙公网安备 33010602011771号 浙ICP备2021040463号-3