最近接到一个帝国CMS模板改版项目,自带的数据可能是收集的,曾经的简介字段内容只截取了60个字,新模板的简介60字符太少了,不美观,想让简介都截取200个字,怎样批量修正呢,文章太多了手动改必定不可,网上查了下帝国CMS教程。共享一段可用代码。

帝国CMS批量提取正文内容到简介办法

1、先备份数据库
2、保存e/admin/ChangeByID.php

<?php
define('EmpireCMSAdmin','1');
require("../class/connect.php");
require("../class/db_sql.php");
require("../class/functions.php");
requireLoadLang("pub/fun.php");
require("../class/t_functions.php");
require("../data/dbcache/class.php");
require("../data/dbcache/MemberLevel.php");
$link=db_connect();
$empire=newmysqlquery();
$tbname="news";
$sid=(int)$_GET['startid'];
$b=0;
$rs=$empire->query("SELECTid,newstextFROM{$dbtbpre}ecms_{$tbname}_data_1WHEREid>{$sid}limit20");
while($r=$empire->fetch($rs))
{
$smalltext='';
!$r['newstext']or$smalltext=SubSmalltextVal($r['newstext'],200);
$smalltext=addslashes($smalltext);
$smalltext&&
$empire->query("UPDATE{$dbtbpre}ecms_{$tbname}SETsmalltext='{$smalltext}'WHEREid=".$r[id]);
$b=$r['id'];
}
$borexit('转化完毕!');
echo"<metahttp-equiv=\"refresh\"content=\"1;url=ChangeByID.php?startid=".$b."\">";
echo"已转化ID".$b;
db_close();
$empire=null;
?>

3、浏览器拜访ChangeByID.php

声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!

原文地址:帝国CMS批量提取正文内容到简介发布于2022-07-02 07:43:28

相关推荐