我搜索了一下 看到有人曾經問過 用 $_SESSION["SessionInfo"]->getValue("userInfo") 來得到UserInfo 這個 object 再從UserInfo這個object中取得,UserInfo 這個 object 的定義在 class/dao/userinfo.class.php 中.
$userInfo = $_SESSION["SessionInfo"]->getValue("userInfo");
$id = $userInfo->getId(); // Get User Id
$name = $userInfo->getUsername(); // Get User Name
$passwd = $userInfo->getPassword(); // Get USer Password
$mail = $userInfo->getEmail(); // Get User Email
可是應該怎麽使用呢,要include那些文件,$_SESSION["SessionInfo"]->getValue("userInfo")這個怎麽得到使用呢,應該include哪些文件,這裡的getValue()是哪個class的呢