phpcms v9判斷使用者是否登入? phpcms V9如何判斷使用者是否登入以及登陸後的標籤寫法問題
首先要取得userid
{php$userid=param::get_cookie('_userid');}
然後再判斷是否為空
##{if $userid }。 。 。這裡寫已經登入之後的程式碼。 。 。 {else}。 。 。這裡寫已經登入之後的程式碼。 。 。 {/if}搞定。 如果想要擴充更多的功能,例如內容增加 登入後查看聯絡方式 的功能,此時我們需要宣告一個變量,用來控制登入後的返回頁面。$forward = trim($url);未登入時的程式碼登入檢視聯絡方式注意連結位址裡面要有參數forward={urlencode($url)} 這樣使用者登入後才能成功返回到之前的內容頁面。
完整的程式碼
{php$userid=param::get_cookie('_userid');$forward=trim($url);} {if$userid}登入後的內容
{else} <<span style="">ahref="{APP_PATH}index.php?m=member&c=index&a=login&forward={urlencode($url)}&siteid={$siteid}"target="_top">登入查看聯絡方式
<<span style="">/a> {/if}但是如果我們想在首頁想要實現的話用這樣的方法就行不通了,因為首頁是靜態,我們可以透過寫一個方法來實現。 開啟/phpcms/modules/content/index.php 增加
//首页用户登录 publicfunctionmember(){ $_username=param::get_cookie('_username'); $_userid=param::get_cookie('_userid'); $siteid=isset($_GET['siteid'])?intval($_GET['siteid']):''; //定义站点id常量 if(!defined('SITEID')){ define('SITEID',$siteid); } $snda_enable=pc_base::load_config('system','snda_enable'); includetemplate('member','afterlogin'); }方法名稱可以自己根據實際情況來定義。然後在首頁模板上需要顯示的位置增加
< script type="text/javascript">document.write('< iframe src="{APP_PATH}index.php?m=content&c=index&a=member&forward='+encodeURIComponent(location.href)+'&siteid={get_siteid()}" allowTransparency="true" width="125" height="98" frameborder="0" scrolling="no">< /iframe>')< /script>PHP中文網,大量的免費
PHPCMS教程,歡迎線上學習!
以上是phpcms v9判斷使用者是否登入的詳細內容。更多資訊請關注PHP中文網其他相關文章!