並沒有這樣的 function,但是你可以透過
http://forum.lifetype.org.tw/index.php?topic=2547.from1152336758;topicseen#msg14543這樣的方式來判斷 User 是否有 login。
<?php
if (!defined( "PLOG_CLASS_PATH" )) {
define( "PLOG_CLASS_PATH", dirname(__FILE__)."/");
}
include_once( PLOG_CLASS_PATH."class/bootstrap.php" );
include_once( PLOG_CLASS_PATH."class/net/http/session/sessionmanager.class.php" );
include_once( PLOG_CLASS_PATH."class/dao/userinfo.class.php" );
SessionManager::init();
$userInfo = &SessionManager::getSessionValue("userInfo");
/*
* Created on 2006-7-8
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*/
?>
<html>
<head>
<title> test
</title>
</head>
<?
if (isset($userInfo)) {
echo "I am logined";
}
?>
</html>
但是記著,這個只能判斷他是不是login,如果還要判斷他是不是某一篇文章的發表人,那還要跟 article object 中的 userInfo 比對。
Mark