本文整理汇总了PHP中data::get_items方法的典型用法代码示例。如果您正苦于以下问题:PHP data::get_items方法的具体用法?PHP data::get_items怎么用?PHP data::get_items使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类data
的用法示例。
在下文中一共展示了data::get_items方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isset
$step = 10;
$page = isset($_GET['p']) ? $_GET['p'] : 1;
if ($page <= 1) {
$start = 0;
$stop = $start + $step;
$to_back = false;
if ($maxpages > 1) {
$to_next = true;
}
} else {
$start = $page * $step;
$stop = $start + $step;
$to_next = false;
$to_back = true;
}
$arrLastItems = $cData->get_items(null, "NOW", null, "pubdate_int", "DESC", $start, 50);
$intLastItems = count($arrLastItems);
$maxpages = $intLastItems / $step;
if ($page > $maxpages) {
$page = $maxpages;
}
if ($page <= 1) {
$start = 0;
$stop = $start + $step;
$to_back = false;
if ($maxpages > 1) {
$to_next = true;
}
} else {
$start = $page * $step;
$stop = $start + $step;
示例2: count
}
} else {
$intStart = $intPage * $intStep - $intStep;
$intStop = $intStart + $intStep;
$to_next = false;
$to_back = true;
if ($intMaxPages > $intPage) {
if ($intStop < $intFeedItems) {
$to_next = true;
}
}
}
$but_to_back = $to_back ? "<a href='/feed/{$intFeedID}-" . ($intPage - 1) . ".html'>< Back</a> " : null;
$but_to_next = $to_next ? "<a href='/feed/{$intFeedID}-" . ($intPage + 1) . ".html'>Next ></a>" : null;
$arrFeed = $cData->get_feed($intFeedID);
$arrItems = $cData->get_items($intFeedID, "NOW", null, "`pubdate_int`", "DESC", $intStart, 20);
$intItems = count($arrItems);
$feed_id = $arrFeed->feed_id;
$feed_url = $arrFeed->url;
$feed_link = $arrFeed->link;
$feed_title = $arrFeed->title != "" ? $arrFeed->title : "unknown";
for ($c = 0; $intItems > $c; $c++) {
$item_title = $arrItems[$c]->title;
$item_link = $arrItems[$c]->link;
$item_id = $arrItems[$c]->item_id;
// $item_descr = $arrItems[$c]->description;
//$item_pubdate = $chi['items'][$c]['pubDate'];
// $item_pubdate = date("Y.m.d, h:i:s", strtotime($arrItems[$c]->pubdate_int));
$item_pubDate = date('d.m.Y h:i', strtotime($arrLastItems[$c]->pubdate_int));
$item_category = $arrItems[$c]->category;
$item_comments = $arrItems[$c]->comments ? "<a href='" . $arrItems[$c]->comments . "'>Comments</a>" : null;