Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将我的网站移至 PHP 为 5.3.23 的新主机。
现在,当我使用 ajax 调用页面时,它没有会话。
<?php session_start(); var_dump($_SESSION); ?>
会话不返回任何内容。
您应该在打印之前指定一些会话参数
此外,var_dump()函数总是为 $_SESSIONS 显示空值。利用
var_dump()
Print_r ($_SESSION);