這是我下面的代碼爲什麼session_start()函數在php構造函數中不起作用?
first.php
class Session
{
function __construct()
{
session_start();
}
function start()
{
$_SESSION['id'] = "1";
}
}
second.php
require "first.php";
$session = new Session();
$session->start();
echo "Session Id ".$_SESSION['id'];
它給我_session沒有定義 所以我要定義啓動功能在session_start的錯誤然後它的工作,但我想在構造函數中使用它!
錯誤是從哪個文件,'first.php'或另一個? – tleb
你在second.php中寫過'session_start();'嗎? –
錯誤是從second.php –