博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php 新闻上一条下一条
阅读量:4963 次
发布时间:2019-06-12

本文共 550 字,大约阅读时间需要 1 分钟。

public function prevnext($table,$id,$where=[]){

$ids=db($table)->field('id,title')->order('sort asc')->where($where)->column('id');
$key=array_search($id,$ids);
// 上一条
if(isset($ids[$key-1])){
$prevnext['prev']=db($table)->field('id,title,country_id')->where('id',$ids[$key-1])->find();
}else{
$prevnext['prev']=false;
}
if(isset($ids[$key+1])){
$prevnext['next']=db($table)->field('id,title,country_id')->where('id',$ids[$key+1])->find();
}else{
$prevnext['next']=false;
}
return $prevnext;
}

转载于:https://www.cnblogs.com/chengfengchi/p/10375001.html

你可能感兴趣的文章
Logback configuration
查看>>
制作一个简单的钓鱼网站
查看>>
喝酒喝出的计算机文化
查看>>
搞笑音乐:人在江湖漂
查看>>
[usaco6.1.1Postal Vans]
查看>>
Apache httpd.conf配置文件AllowOverride参数详解
查看>>
手动添加git 到 右键菜单
查看>>
spring 配置 junit
查看>>
LeetCode 516. Longest Palindromic Subsequence
查看>>
Android 开发手记一NDK编程实例
查看>>
AJAX实现跨域的三种方法
查看>>
Spring 整合 Redis
查看>>
[USACO07MAR]黄金阵容均衡Gold Balanced L…(洛谷 1360)
查看>>
理解 Azure 平台中虚拟机的计算能力
查看>>
预处理、const、static与sizeof-sizeof与strlen有哪些区别
查看>>
LeetCode 40
查看>>
【leetcode】92. Reverse Linked List II
查看>>
PyQt5-信号与槽
查看>>
android 获取控件大小和设置调整控件的位置XY
查看>>
tomcat7.0在centos7下中文乱码问题解决汇总
查看>>