帝国cms7.5内容随机调取(高效率简易版)完整版
时间:2023年12月16日
/来源:网络
/编辑:佚名
高效率函数
function user_randId($table='news'){
global $dbtbpre,$empire;
$filePath = ECMS_PATH . 'e/maxID'.md5($table).'.txt'; // 文件路径
if(file_exists($filePath)) {
$fileCreateTime = filectime($filePath); // 获取文件创建时间(Unix 时间戳)
$oneDayAgo = strtotime('-1 day'); // 当前时间减去一天的时间戳
if ($fileCreateTime < $oneDayAgo) {
unlink($filePath);
$start = $empire->fetch1("select id from {$dbtbpre}ecms_{$table} where newstime <= ".time()." order by id ASC limit 1");
$end = $empire->fetch1("select id from {$dbtbpre}ecms_{$table} where newstime <= ".time()." order by id DESC limit 1");
$index['min'] = $start['id'];
$index['max'] = $end['id'];
file_put_contents($filePath,json_encode($index));
} else {
$index = json_decode(file_get_contents($filePath),true);
}
} else {
$start = $empire->fetch1("select id from {$dbtbpre}ecms_{$table} where newstime <= ".time()." order by id ASC limit 1");
$end = $empire->fetch1("select id from {$dbtbpre}ecms_{$table} where newstime <= ".time()." order by id DESC limit 1");
$index['min'] = $start['id'];
$index['max'] = $end['id'];
file_put_contents($filePath,json_encode($index));
}
$randnum=300; //随机数量
$randids='';
$randdh='';
for($i=1;$i<=$randnum;$i++)
{
$randids.=$randdh.rand($index['min'],$index['max']); //1为最小ID,100000为最大ID
$randdh=',';
}
return $randids;
}
支持不同数据表的查询,默认为news表,调用方式为:
<? $randids = user_randId('news1');?>
[ecmsinfo]3,8,32,0,0,15,0,"id in ($randids)"[/ecmsinfo]
高效率代码第二版:
第二版可谓是更加智能,采用了缓存的技术,巴适
本文隐藏内容
<ul>
<?php
$filePath = ECMS_PATH . 'e/maxID.txt'; // 文件路径
if(file_exists($filePath)) {
$fileCreateTime = filectime($filePath); // 获取文件创建时间(Unix 时间戳)
$oneDayAgo = strtotime('-1 day'); // 当前时间减去一天的时间戳
if ($fileCreateTime < $oneDayAgo) {
unlink($filePath);
$start = $empire->fetch1("select id from {$dbtbpre}ecms_news where newstime <= ".time()." order by id ASC limit 1");
$end = $empire->fetch1("select id from {$dbtbpre}ecms_news where newstime <= ".time()." order by id DESC limit 1");
$index['min'] = $start['id'];
$index['max'] = $end['id'];
file_put_contents($filePath,json_encode($index));
} else {
$index = json_decode(file_get_contents($filePath),true);
}
} else {
$start = $empire->fetch1("select id from {$dbtbpre}ecms_news where newstime <= ".time()." order by id ASC limit 1");
$end = $empire->fetch1("select id from {$dbtbpre}ecms_news where newstime <= ".time()." order by id DESC limit 1");
$index['min'] = $start['id'];
$index['max'] = $end['id'];
file_put_contents($filePath,json_encode($index));
}
$randnum=32; //随机数量
$randids='';
$randdh='';
for($i=1;$i<=$randnum;$i++)
{
$randids.=$randdh.rand($index['min'],$index['max']); //1为最小ID,100000为最大ID
$randdh=',';
}
?>
[e:loop={0,10,3,0,"id in ($randids)"}]
<li>
<a href="<?=$bqsr['titleurl']?>" title="<?=$bqr['title']?>" target="_blank"><?=$bqr['title']?></a>
</li>
[/e:loop]
</ul>
高效率调用第一版:
<?php
$randnum=32; //随机数量
$randids='';
$randdh='';
for($i=1;$i<=$randnum;$i++)
{
$randids.=$randdh.rand(1,100); //1为最小ID,100000为最大ID
$randdh=',';
}
?> [e:loop={1,32,0,0,"id in ($randids)"}]
<li>
<a href="<?=$bqsr['titleurl']?>" title="<?=$bqr['title']?>"><?=$bqr['title']?></a>
</li>
[/e:loop]
function user_randId($table='news'){
global $dbtbpre,$empire;
$filePath = ECMS_PATH . 'e/maxID'.md5($table).'.txt'; // 文件路径
if(file_exists($filePath)) {
$fileCreateTime = filectime($filePath); // 获取文件创建时间(Unix 时间戳)
$oneDayAgo = strtotime('-1 day'); // 当前时间减去一天的时间戳
if ($fileCreateTime < $oneDayAgo) {
unlink($filePath);
$start = $empire->fetch1("select id from {$dbtbpre}ecms_{$table} where newstime <= ".time()." order by id ASC limit 1");
$end = $empire->fetch1("select id from {$dbtbpre}ecms_{$table} where newstime <= ".time()." order by id DESC limit 1");
$index['min'] = $start['id'];
$index['max'] = $end['id'];
file_put_contents($filePath,json_encode($index));
} else {
$index = json_decode(file_get_contents($filePath),true);
}
} else {
$start = $empire->fetch1("select id from {$dbtbpre}ecms_{$table} where newstime <= ".time()." order by id ASC limit 1");
$end = $empire->fetch1("select id from {$dbtbpre}ecms_{$table} where newstime <= ".time()." order by id DESC limit 1");
$index['min'] = $start['id'];
$index['max'] = $end['id'];
file_put_contents($filePath,json_encode($index));
}
$randnum=300; //随机数量
$randids='';
$randdh='';
for($i=1;$i<=$randnum;$i++)
{
$randids.=$randdh.rand($index['min'],$index['max']); //1为最小ID,100000为最大ID
$randdh=',';
}
return $randids;
}
支持不同数据表的查询,默认为news表,调用方式为:
<? $randids = user_randId('news1');?>
[ecmsinfo]3,8,32,0,0,15,0,"id in ($randids)"[/ecmsinfo]
高效率代码第二版:
第二版可谓是更加智能,采用了缓存的技术,巴适
本文隐藏内容
<ul>
<?php
$filePath = ECMS_PATH . 'e/maxID.txt'; // 文件路径
if(file_exists($filePath)) {
$fileCreateTime = filectime($filePath); // 获取文件创建时间(Unix 时间戳)
$oneDayAgo = strtotime('-1 day'); // 当前时间减去一天的时间戳
if ($fileCreateTime < $oneDayAgo) {
unlink($filePath);
$start = $empire->fetch1("select id from {$dbtbpre}ecms_news where newstime <= ".time()." order by id ASC limit 1");
$end = $empire->fetch1("select id from {$dbtbpre}ecms_news where newstime <= ".time()." order by id DESC limit 1");
$index['min'] = $start['id'];
$index['max'] = $end['id'];
file_put_contents($filePath,json_encode($index));
} else {
$index = json_decode(file_get_contents($filePath),true);
}
} else {
$start = $empire->fetch1("select id from {$dbtbpre}ecms_news where newstime <= ".time()." order by id ASC limit 1");
$end = $empire->fetch1("select id from {$dbtbpre}ecms_news where newstime <= ".time()." order by id DESC limit 1");
$index['min'] = $start['id'];
$index['max'] = $end['id'];
file_put_contents($filePath,json_encode($index));
}
$randnum=32; //随机数量
$randids='';
$randdh='';
for($i=1;$i<=$randnum;$i++)
{
$randids.=$randdh.rand($index['min'],$index['max']); //1为最小ID,100000为最大ID
$randdh=',';
}
?>
[e:loop={0,10,3,0,"id in ($randids)"}]
<li>
<a href="<?=$bqsr['titleurl']?>" title="<?=$bqr['title']?>" target="_blank"><?=$bqr['title']?></a>
</li>
[/e:loop]
</ul>
高效率调用第一版:
<?php
$randnum=32; //随机数量
$randids='';
$randdh='';
for($i=1;$i<=$randnum;$i++)
{
$randids.=$randdh.rand(1,100); //1为最小ID,100000为最大ID
$randdh=',';
}
?> [e:loop={1,32,0,0,"id in ($randids)"}]
<li>
<a href="<?=$bqsr['titleurl']?>" title="<?=$bqr['title']?>"><?=$bqr['title']?></a>
</li>
[/e:loop]
新闻资讯 更多
- 【帝国cms教程】帝国CMS模板变量$GLOBALS[navclassid]用法分析04-03
- 【帝国cms教程】鲜为人知帝国CMS内容页调用上一篇和下一篇的精华方法汇总04-03
- 【帝国cms教程】怎么快速找出帝国CMS数据库配置文件路径及迁移网站后修改技巧!04-03
- 【帝国cms教程】帝国CMS模板$GLOBALS[navclassid]用法详解04-03
- 【帝国cms教程】帝国cms 7.5版列表页分页样式修改笔记04-02
- 【帝国cms教程】解决帝国CMS搜索页面模板不支持灵动标签和万能标签的方法04-02
- 【帝国cms教程】帝国CMS只备份栏目和模板的方法04-02
- 【帝国cms教程】帝国CMS怎样删除清空数据库记录?04-02
热门文章
- 178Moban源码谈谈免费源码与收费源码的区别
- 2帝国CMS忘记后台登陆用户名、密码、认证码的解决方法
- 3帝国CMS(EmpireCMS) v7.5后台任意代码执行漏洞及具体修复方法
- 4帝国CMS和WordPress 哪个好?哪个适合建站?
- 5如何解决Discuz的密码错误次数过多请15分钟后登陆的问题
- 6帝国cms灵动标签取得内容和栏目链接地址
- 7emlog pro 注册码“开心”教程(如果有一天,emlog官方版 或者 emlog免费版 跑路了,那用户怎么办?)
- 8织梦CMS在nginx下设置伪静态方法(附nginx伪静态规则)
- 9帝国cms后台登录出现”您还未登录”怎么解决?
- 10帝国cms7.5忘记登录密码 和忘记登录认证码以及多次登录 失败被锁定解决办法