Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はJoomla 3.0最新バージョンを使用しsessionています。ユーザーがログインしたら、削除する必要がありますlogin。同じユーザー ID で再びログインする気分ではありません--- したがって、Joomla のセッションは$session =& JFactory::getSession();
Joomla 3.0
session
login
$session =& JFactory::getSession();
彼がウェブサイトに一度だけ入ることができるように、どうすればユーザー名を設定できloggedますか?
logged
このようにしてみて、
$user = JFactory::getUser(); $session =& JFactory::getSession(); $session->set('userid',$user->id); //checking whether the user logged in or not $userid = $session->get('userid'); if($userid=='') { $session->set('userid',''); //set to blank }