警告:session_destroy():试图摧毁初始化

经验证,session_start()函数必须在session_destroy先使用()函数调用。
那就是有下面的代码:
复制代码代码如下所示:
<
session_start();
session_destroy();
>