Home > Article > CMS Tutorial > How to determine login in phpcmsv9
phpcms v9 determines login:
First get the userid
{php$userid=param::get_cookie('_userid');}
and then determine whether it is empty
{if $userid}。。。这里写已经登录之后的代码。。。{else}。。。这里写已经登录之后的代码。。。{/if}
Complete code:
{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">
The above is the detailed content of How to determine login in phpcmsv9. For more information, please follow other related articles on the PHP Chinese website!