var_dump
当我在另一个页面中尝试时,为什么我得到一个空的会话数组?在服务器中,会话存储没有任何内容,只有 id 的名称。使用 cookie 一切正常。有时(是的,有时),我重新启动服务器,然后会话也运行良好。什么可能导致此问题?
也许是 php 5.1.6 的错误?还是服务器配置有问题?
index_2.php
<?php
session_start();
$_SESSION['xxx'] = "tessstsse";
var_dump($_SESSION);//here show the correct session
header( 'Location: index_3.php');
index_3.php
<?php
session_start();
var_dump($_SESSION);
其输出将是:
array
empty