$_SGLOBAL['supe_uid'] 该变量为当前用户的UID
$_SGLOBAL['supe_username'] 该变量为当前用户的名字
$_SGLOBAL['db'] 数据库操作对象
showmessage(message, url) 该函数为显示跳转信息: message 为信息, url 为跳转url
ckstart(start, perpage) 检查输入的start是否合法:start 为开始数,perpage为每页显示数
smulti(start, perpage, count, url) 获取分页的函数:start 为开始数,perpage为每页显示数,count为当前列表数,url为页面url
$space = getspace(uid) 该函数为获取当前用户的空间信息:uid为用户uid
其中获取到的$space,常用的有以下几个:
$space['uid'] 用户UID
$space['username'] 用户名
$space['frienduid'] 用户的好友UID列表,以逗号分割。例如:1,5,6,7
添加个人动态的方法:
include_once(S_ROOT.'./source/function_cp.php');
$icon = 'money'; //个人动态前面的图标英文名,随意命名,需要修改css支持
$title_template = '{actor} 更新了自己的 <a href="money.php">记账本</a>'; //标题内容,支持html,其中 {actor} 为内置变量,表示当前人名
feed_add($icon, $title_template); |