phpcms v9文章定时发布功能设置技巧

发布时间:2020-08-31编辑:脚本学堂
有关phpcms v9文章定时发布功能的用法,phpcms v9文章定时发布保证文章全天侯发布,稳定的网站更新频率,可以使用phpcms v9的文章定时发布来完成。

phpcms v9文章定时发布功能设置技巧

使用wordpress博客的朋友都可以定时来发文章了,那么国内的phpcms有没有此功能呢,只需要简单的修改程序即可达到定时发布文章。

phpcms v9 本身是没有定时发布这一项功能的,这需要进行二次开发才能实现,关于定时发布的好处不用多说了吧,当在没有时间进行更新站点的时候,不会出现文章断更的情况,比如过年或自己过节没有时间更新了,可以提前写好文章,让其自动进行更新,在 wordpress 中有这样一个很好的时间机制。

这里分享下在 phpcms v9 中如何实现文章定时的发布,这是在 pc 论坛上面看到的一个方法。
1、修改api/count.php这一文件,在PHP语句结束代码 ?>前,加入代码:
 

复制代码 代码示例:
//add 定时发布审核功能
$urlobj = pc_base::load_app_class('url', 'content');  
$html = pc_base::load_app_class('html', 'content');
 
$modelid = $modelid ? $modelid : intval($_GET['modelid']);
$content_db = $content_db ? $content_db : pc_base::load_model('content_model');
$content_db->set_model($modelid);
$where = ' status = 1 and inputtime <= '.SYS_TIME;
$r = $content_db->count($where);
if( !empty($r) ){ //执行update操作
$ids = $content_db->select($where, 'id,catid', $r, '', '', 'id');
foreach($ids AS $kid=>$v){
$catid = $v['catid'];
$id = $kid;
$r = $content_db->get_content($catid,$id);
$urls = $urlobj->show($id, 0, $catid, $r['inputtime'], $r['prefix'],$r,'add');
if($urls['content_ishtml']) $html->show($urls[1],$urls['data'],0);
$html->index();
$html->create_relation_html($catid);
}
$content_db->update( array('status'=>99),$where );
}
 

这样,借统计代码在更新时,让需要审核的文章在预定的时间点通过发布。

2、在文章页面的模板中,添加统计代码:
 

<script language="javascript" src="{APP_PATH}api.php?op=count&id={$id}&modelid={$modelid}"></script>

默认的模板里边已经默认添加了这句统计代码,检查下,这样文章在被浏览时,触发这个JS,就会执行第一步添加的通过审核代码。

最好是借助于服务器上的定时任务功能,准确实现定时自动发布功能。