session_id()问题
如题 元代码 里面 没有设置 session_id啊 可是echo后面的session_id()是怎么来的?随机么?
第二个问题$_session['test']=time() 我可以理解是 创建一个名字为test的session么 然后它的值是当前时间?
如题 元代码 里面 没有设置 session_id啊 可是echo后面的session_id()是怎么来的?随机么?
第二个问题$_session['test']=time() 我可以理解是 创建一个名字为test的session么 然后它的值是当前时间?
2015-12-06
那个 问下 我积分没了 只能在这里问了
<?php
session_start();
$_SESSION['bendan']="haha";
$_SESSION['xiaohuai']="huaidan";
unset($_SESSION);
session_destroy;
var_dump($_SESSION); 这么写 为什么会报错啊 完全照着 慕课老师代码写的 报错码
Notice: Use of undefined constant session_destroy - assumed 'session_destroy' in /26/572/903x/index.php on line 9
Notice: Undefined variable: _SESSION in /26/572/903x/index.php on line 10
NULL
举报