为什么使用下面代码会被警告(warning)?
<!DOCTYPE html>
<html>
<head>
<title>测试</title>
</head>
<body>
<code><?php
session_start();
$_SESSION["a"]=2;
echo "a:" . $_SESSION["a"];
?></code>
</body>
</html>
为什么使用下面代码会被警告(warning)?
<!DOCTYPE html>
<html>
<head>
<title>测试</title>
</head>
<body>
<code><?php
session_start();
$_SESSION["a"]=2;
echo "a:" . $_SESSION["a"];
?></code>
</body>
</html>
被谁警告?
我用php运行器运行的时候返回的一个warning