本文實(shí)例講述了redis+php實(shí)現(xiàn)微博列表功能。分享給大家供大家參考,具體如下:
個(gè)人主頁顯示微博列表(自己及關(guān)注人的微博列表)
/*獲取最新的50微博信息列表,列出自己發(fā)布的微博及我關(guān)注用戶的微博
*1.根據(jù)推送的信息獲取postid
*2.根據(jù)postid獲取發(fā)送的信息
*/
$r->ltrim("recivepost:".$user['userid'],0,49);
$postid_arr = $r->sort("recivepost:".$user['userid'],array('sort'=>'desc'));
if($postid_arr){
foreach($postid_arr as $postid){
$p = $r->hmget("post:postid:".$postid,array('userid','username','time','content'));
$weiboList .= 'div class="post">a class="username" href="profile.php?u='.$p['username'].'" rel="external nofollow" rel="external nofollow" >'.$p['username'].'/a>'.$p['content'].'br>i>'.formattime($p['time']).'前發(fā)布/i>/div>';
}
echo $weiboList;
}else{
echo 'div class="post" >這個(gè)家伙很懶,還未發(fā)布消息哦~/div>';
}
顯示個(gè)人微博列表
/**
*1.獲取個(gè)人發(fā)布微博的id的隊(duì)列
*2.根據(jù)postid獲取微博信息
**/
$r->ltrim("userpostid:".$prouid,0,49);
$postid_arr = $r->sort("userpostid:".$prouid,array('sort'=>'desc'));
if($postid_arr){
foreach($postid_arr as $postid){
$p = $r->hmget("post:postid:".$postid,array('userid','username','time','content'));
$weiboList .= 'div class="post">a class="username" href="profile.php?u='.$p['username'].'" rel="external nofollow" rel="external nofollow" >'.$p['username'].'/a>'.$p['content'].'br>i>'.formattime($p['time']).'前發(fā)布/i>/div>';
}
echo $weiboList;
}else{
echo 'div class="post" >這個(gè)家伙很懶,還未發(fā)布消息哦~/div>';
}
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php+redis數(shù)據(jù)庫程序設(shè)計(jì)技巧總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《PHP基本語法入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- PHP實(shí)現(xiàn)發(fā)送微博消息功能完整示例
- redis+php實(shí)現(xiàn)微博(二)發(fā)布與關(guān)注功能詳解
- redis+php實(shí)現(xiàn)微博(一)注冊與登錄功能詳解
- PHP+redis實(shí)現(xiàn)微博的拉模型案例詳解
- PHP+redis實(shí)現(xiàn)微博的推模型案例分析
- vue+php實(shí)現(xiàn)的微博留言功能示例
- php微信分享到朋友圈、QQ、朋友、微博
- PHP調(diào)用微博接口實(shí)現(xiàn)微博登錄的方法示例
- php新浪微博登錄接口用法實(shí)例
- 基于PHP實(shí)現(xiàn)發(fā)微博動(dòng)態(tài)代碼實(shí)例