Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 osclass 分类脚本,我想获取最后一个项目的项目 ID。
到目前为止,我尝试了以下代码,但它不起作用
$lastItem[] = View::newInstance()->_get('search_end'); echo $lastItem[0]['pk_i_id'];
任何人都告诉我它有什么问题,或引导我走向正确的方向。
我相信你可以使用最新的项目。
if (osc_has_latest_items()): echo osc_item_id(); endif;
它使用::getLastestItems()默认为降序的搜索模型对象中的方法。所以最新项列表中的第一项实际上是最新的。
::getLastestItems()
但是请注意,它会覆盖“标准”项目循环,因此不要在while (osc_has_items()):示例中使用它。
while (osc_has_items()):