当前位置: 首页>>代码示例>>PHP>>正文


PHP Tweet::count方法代码示例

本文整理汇总了PHP中Tweet::count方法的典型用法代码示例。如果您正苦于以下问题:PHP Tweet::count方法的具体用法?PHP Tweet::count怎么用?PHP Tweet::count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Tweet的用法示例。


在下文中一共展示了Tweet::count方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: overview

 public function overview()
 {
     $unsent = Tweet::count("tweets.message_id = '' AND tweets.publish_at <= NOW()");
     $pending = Tweet::count("tweets.message_id = '' AND tweets.publish_at > NOW()");
     $total = Tweet::count();
     $this->assign('unsent', $unsent);
     $this->assign('pending', $pending);
     $this->assign('total', $total);
     $this->title = 'Twitter';
     $this->render('tweet/overview.tpl');
 }
开发者ID:ItsHaden,项目名称:epicLanBootstrap,代码行数:11,代码来源:tweet.controller.php

示例2: foreach

foreach ($tweets as $tweet) {
    $tweet->tagify();
    $cleantext = $tweet->message;
    //$tweet->clean();
    echo "<li id=\"tweet-" . $tweet->id . "\" class=\"tweet" . ($i % 2 == 0 ? " altrow" : "") . "\">\n";
    echo "<div class=\"userpic\"><a href=\"http://twitter.com/" . $tweet->screen_name . "\"><img src=\"" . $tweet->userpic . "\" alt=\"\" /></a></div>\n";
    echo "<div class=\"tweet-meta\"><a href=\"http://twitter.com/" . $tweet->screen_name . "\">" . $tweet->name . "</a> " . relativeTime(strtotime($tweet->published)) . "</div>";
    echo "<div class=\"tweet-body\">" . linkify($cleantext) . ' <a href="' . $tweet->permalink() . '" class="permalink">&infin;</a></div>';
    echo "</li>\n";
    $i++;
}
?>
				</ul>
				<?php 
if ($tweets) {
    echo Paginator::paginate($offset, Tweet::count($tag), PAGE_LIMIT, "index.php?" . ($tag ? 'tag=' . urlencode($tag) . '&' : '') . "offset=");
} else {
    echo "<div class=\"tweetless\">\n";
    echo "No tweets.\n";
    echo "</div>\n";
}
?>
	    	</div>
		</div>
		<div id="footer">
			<p>Powered by <a href="http://plasticmind.com/twitster/?referral=1">Twitster</a></p>
		</div>
	</div>

</body>
</html>
开发者ID:laiello,项目名称:twitster,代码行数:31,代码来源:index.php


注:本文中的Tweet::count方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。