我正在构建一种迷你 cms,但是当我尝试使用会话时出现此错误:
已弃用:函数 session_is_registered() 在第 4 行的 index.php 中已弃用,我使用的代码是:
<?php
session_start(); //Start the session
define(ADMIN,$_SESSION['name']); //Get the user name from the previously registered super global variable
if(!session_is_registered("admin")){ //If session not registered
header("location:login.php"); // Redirect to login.php page
}
else //Continue to current page
header( 'Content-Type: text/html; charset=utf-8' );
?>
它还说明了有关已发送标头的信息...