大家都知道seowhy基礎(chǔ)指南右上角的10個(gè)最新帖子是從seowhy論壇調(diào)出來的,很多朋友都想要在自己網(wǎng)站的首頁調(diào)用二級(jí)目錄論壇的最新帖子,只要能調(diào)出論壇html格式的網(wǎng)頁,首頁調(diào)用就很簡單了。
具體方法:
新建一個(gè)文本文件,把以下代碼保存在文本文件中,然后把它重命名為cron_makehtml_daily.php,即php文件,然后通過ftp工具把cron_makehtml_daily.php上傳到論壇目錄下的/source/include/cron/目錄中.
- <?php
- if(!defined(‘IN_DISCUZ’)) {
- exit(‘Access Denied’);
- }
- $newhtml = ”;
- $query = DB::query(“SELECT t.*, f.name FROM bbs_forum_thread t, bbs_forum_forum f WHERE t.fid=f.fid and f.fid IN(’2′,’36′,’37′,’39′,’40′,’42′) ORDER BY t.dateline DESC LIMIT 0, 10″); //這里要修改你自己想要調(diào)用的版塊ID
- while($new = DB::fetch($query)) {
- $newsubject = cutstr($new['subject'],48);
- $newurl = ‘http://www.100de.com.cn/bbs/thread-’.$new['tid'].’-1-1.html’;
- $newhtml .= ‘<li><a target=”_blank” href=”‘.$newurl.’”>’.$newsubject.’</a></li>’;
- }
- $newhtml = convert_data($newhtml);
- writehtml(‘newhtml.htm’, $newhtml);
- //寫入html文件
- function writehtml($file, $html) {
- global $timestamp;
- $yearmonth = gmdate(‘Ym’, $timestamp + 8 * 3600);
- $logdir = DISCUZ_ROOT.’./data/cache/’;
- $logfile = $logdir.$file;
- if($fp = @fopen($logfile, ‘w’)) {
- @flock($fp, 2);
- fwrite($fp, “$html”);
- fclose($fp);
- }
- }
- function convert_data($data) {
- include_once DISCUZ_ROOT.’./source/class/class_chinese.php’;
- $c = new Chinese(‘utf8′,’gbk’);
- $data = $c->Convert($data);
- return $data;
- }
- ?>
上面是SEOWHY提供給我的代碼,因?yàn)槲冶旧淼姆?wù)器環(huán)境是utf-8的,所以我注釋了2段代碼,才顯示正常
第一段代碼,是編碼轉(zhuǎn)換
//$newhtml = convert_data($newhtml);
第二段代碼,編碼轉(zhuǎn)換的方法
然后登陸論壇后臺(tái)管理中心,工具->計(jì)劃任務(wù),增加一個(gè)新的計(jì)劃任務(wù)名“輸出html”,名字可以自己取,然后點(diǎn)擊這個(gè)任務(wù)的“編輯”,在“任務(wù)腳本”里面輸入:cron_makehtml_daily.php,其他更新時(shí)間設(shè)置,自己選擇,也可以保持默認(rèn),點(diǎn)擊“提交”。
然后,通過這個(gè)地址=http://你的網(wǎng)址/bbs/data/cache/newhtml.htm,可以獲得html格式的論壇最新10個(gè)帖子,如果顯示亂碼,切換到UTF-8編碼下查看。
然后在首頁index.php中,添加一個(gè)方法:
- function readBbsHtml() //output bbs latest topic
- {
- $content = file(“http://你的網(wǎng)址/bbs/data/cache/newhtml.htm“);
- $content = implode(“/n”,$content);
- return $content;
- }
新聞熱點(diǎn)
疑難解答
圖片精選