跳到主要內容

擷取臺中市教育局校園活動新聞的PHP程式,可用於Xoops自訂區塊中-教學撰寫:徐嘉裕Neil hsu

首先要先感謝台中市喀哩國小資訊老師提供的原始程式碼,這樣讓我節省很多時間,不用再去開發網頁爬蟲程式,這裡就按照原始程式碼修改為兩個樣式!直接可以顯示臺中市教育局校園活動新聞內容

首先區要知道所屬學校的網址,這樣程式才能去爬行撈資料,查詢學校網址的方法如下:

1、先進入臺中市校園活動新聞首頁
http://www.tc.edu.tw/SchoolNews/show

2、找到右下角的學校發表排行區塊

3、找到自己學校點進去,上面的網址就是該學校活動新聞網址,之後的程式需要貼入


樣式一:區塊輪播樣式




//PHP程式碼

echo "<script type='text/javascript' src='http://www.tc.edu.tw/js/jquery-1.6.4.min.js'></script>
<script type='text/javascript' src='http://www.tc.edu.tw/js/plugins/jquery.cycle.all.min.js'></script>
<script type='text/javascript'>
$('#school_news').cycle({
        fx:     'turnDown',
        delay:  -2000,
        speed:  2500 ,
        timeout:  5000 ,
        pause:1
   });
</script>


$show_num=1;//顯示幾則新聞,大於1則會有輪播效果
//取得新聞
$url = "http://www.tc.edu.tw/SchoolNews/show/school/id/546";  //貼上校園活動新聞網址
$contents = addslashes(file_get_contents($url));
$contents = str_replace (addslashes('href="/'), addslashes(' href="http://www.tc.edu.tw/'), $contents);
$contents = str_replace (addslashes('src="/'), addslashes(' src="http://www.tc.edu.tw/'), $contents);
$new_arr=explode(addslashes('<div class="articles" style="margin-bottom: 10px;">'),$contents);
$i=1;
while($i<=$show_num){
$new_arr[$i]=stripslashes($new_arr[$i]);

//取得標題
$title=str_replace("<a","<a target=_blank ",CatchStr($new_arr[$i],"<a","a>"));
$title=str_replace("~","<br>",$title);
$t_url=substr(CatchStr($title,"h",">"),0,-1);
$news_id=substr($t_url,51,-1);

//處理圖片
$img_src=substr(CatchStr($new_arr[$i],"src","alt"),5,-5);
$img_size=getimagesize($img_src);

$img_w=241;
$img_h=auto;

$image="<a target='_blank' ".$t_url."><img class='thumbnail' width={$img_w} height={$img_h} src='{$img_src}' alt='' /></a>";


//處理報導者
$report=CatchStr($new_arr[$i],"<p","p>");
$r_date=substr($report,18,10);
$reporter=substr(CatchStr($report,"a>",","),2,-1);


echo "<div class = 'school_news'></$show_num)>".$image."<small>".$title."</small></div>";
$i++;
}
function CatchStr($Str, $StaKey, $EndKey){
$sp=strpos($Str,$StaKey);
$ep=strpos($Str,$EndKey);
$sl=strlen($StaKey);
$el=strlen($EndKey);

$res=substr($Str,$sp,$ep-$sp+$el);
return $res;
}

//輪播範圍終點
echo "</div>";

PS:複製以上的程式碼貼到Xoops自訂區塊中,下面的內容類型須設為:PHP腳本

//CSS樣式

#school_news .thumbnail{
position: relative;
margin: 0px 0px 5px 0px;
}
.school_news{
line-height: 160%;
font-size: 110%;
}
.school_news a{
position: relative;
color: #393939
}


樣式二:條列式樣式





//PHP程式碼

echo "<div id= 'school_newslistbox' ><ul>";

$show_num=7;//顯示幾則新聞

//取得新聞
$url = "http://www.tc.edu.tw/SchoolNews/show/school/id/546"; //貼上校園活動新聞網址
$contents = addslashes(file_get_contents($url));
$contents = str_replace (addslashes('href="/'), addslashes(' href="http://www.tc.edu.tw/'), $contents);
$contents = str_replace (addslashes('src="/'), addslashes(' src="http://www.tc.edu.tw/'), $contents);
$new_arr=explode(addslashes('<div class="articles" style="margin-bottom: 10px;">'),$contents);

$i=1;

while($i<=$show_num){
$new_arr[$i]=stripslashes($new_arr[$i]);

//取得標題
$title=str_replace("<a","<a target=_blank ",CatchStr2($new_arr[$i],"<a","a>"));
$title=str_replace("~","<br>",$title);
$t_url=substr(CatchStr2($title,"h",">"),0,-1);
$news_id=substr($t_url,51,-1);
//處理報導者

$report=CatchStr2($new_arr[$i],"<p","p>");
$r_date=substr($report,18,10);
$reporter=substr(CatchStr2($report,"a>",","),2,-1);
echo "<li><div class='school_newslast'> <span id='r_date'>".$r_date."</span>".$title."</div></li>";
$i++;
}

function CatchStr2($Str, $StaKey, $EndKey){
$sp=strpos($Str,$StaKey);
$ep=strpos($Str,$EndKey);
$sl=strlen($StaKey);
$el=strlen($EndKey);
$res=substr($Str,$sp,$ep-$sp+$el);
return $res;
}

//輪播範圍終點

echo "</ul></div>

";

PS:複製以上的程式碼貼到Xoops自訂區塊中,下面的內容類型須設為:PHP腳本

//CSS樣式

#school_newslistbox{
position: relative;
padding: 0px 0px 10px 0px;
}

#school_newslistbox li:nth-child(odd)
{
position: relative;
height: 49px;
margin: 0px 0px 0px 0px;
padding: 5px 0px 0px 44px;
font-size: 125%;
line-height: 170%;
overflow: hidden;
background: url(../../img/modules/tadnews/dppstc_66.png) no-repeat left 2px,url(../../img/modules/tadnews/dppstc_63.png) no-repeat left bottom;
}
#school_newslistbox li:nth-child(even)
{
position: relative;
height: 49px;
margin: 0px 0px 0px 0px;
padding: 5px 0px 0px 44px;
font-size: 125%;
line-height: 170%;
overflow: hidden;
background: url(../../img/modules/tadnews/dppstc_67.png) no-repeat left 2px,url(../../img/modules/tadnews/dppstc_63.png) no-repeat left bottom;
}


.school_newslast a{
color: #000000;
}
.school_newslast a:hover{
color: #789314;
}


#r_date{
padding: 1px 5px;
margin: 0px 2px 0px 0px;
background: #C84297 url(../../img/modules/tadnews/) no-repeat left 6px;
border-radius: 10px;
color: #ffffff;
}


CSS樣式及新聞顯示筆數可自行調整,這兩個區塊功能經測試功能都沒問題的,歡迎有需要的臺中學校單位自行取用。

教學撰寫:徐嘉裕

留言

這個網誌中的熱門文章

好用的windows備份檔案dos指令XCOPY-教學撰寫:徐嘉裕Neil hsu

要快速的備份某個硬碟全部資料到備份硬碟中,雖然是可以用windows內建的備份與還原,但如果重灌windows可會有key不同而無法還原的問題,還要改一堆設定煩死了,直接用dos指令XCOPY來做檔案的複製就很快了,資料也不會丟失,好朋友可以參考看看!! 首先開啟windows所有程式->附屬應用程式->開啟命令提示字元! 然後輸入以下指令 XCOPY C:\xxx   F:\xxx /s 藍字的 C:\xxx  為複製檔案來源位置例如要複製整個C槽就輸入 C:\ 綠色的   F:\xxx 為複製目的位置,例如要放到F槽的備份資料夾,就輸入  F:\ 備份 紅字的 S 為複製類型參數,可以自行修改為以下的參數設定: ================================================================= /A    只複製設定成保存屬性的檔案,不要改變屬性的設定。 /M    只複製設定成保存屬性的檔案,並清除保存屬性。 /D:m-d-y  複製指定日期當天或之後變更的檔案。如果沒給日期,只複製那些來源檔案日期比目的檔案日期為新的檔案。 /EXCLUDE:file1[+file2][+file3]...         指定檔案清單字串。每個字串應在不同行。如果有字串對應到要進行複製的檔案絕         對路徑的任何部分,這個檔案會被排除複製。例如,指定字串         \obj\ 或 .obj 的話,會排除所有在 obj 目錄下副檔名是.obj 的檔案複製。 /P    在建立每個目的檔案時顯示提示。 /S    複製每個目錄及其包含的子目錄,不複製空目錄。 /E    複製每個目錄及其包含的子目錄,也複製空目錄。/S 與 /E相同,能夠用來修改 /T。 /V    驗證每個新檔案。 /W    在複製之前提示您按鍵繼續。 /C    如果錯誤發生時也繼續複製。 /I    如果目的不存在且複製一個以上的檔案的話,就假設指定的目的一定是目錄。 /Q    在複製時不要顯示檔名。 /F    在複製時顯示來源及

jQuery取得下拉選單selected中數值與內容的方法

假設選單狀態為: <select id='selectname '> <option value='v1' data-id="d1">選單A</option> <option value='v2' data-id="d2">選單B</option> <option value='v3' data-id="d3">選單C</option> </select> 以jQuery取得選單數值與內容方法如下: 1、取得下拉選單 value 數值的方法 $selectname=$('#selectname').val(); alert($selectname); //顯示選單中 selected 狀態的value數值v1 or  v2  or  v3。 2、取得下拉選單中 data-id 數值的方法 $data-id= $(this).find(':selected').attr('data-id'); alert($data-id); //顯示選單中 selected 狀態的data-id數值d1 or  d2 or  d3。 3、取得下拉選單中 文字 的方法 $selecttext=$(this).find(':selected').text(); alert($selecttext); //顯示選單中 selected 狀態的文字內容,如選單A or  選單B or 選單C。 教學撰寫:徐嘉裕 Neil hsu

CentOS7啟用ssh的設定方法-教學撰寫:徐嘉裕Neil hsu

安裝好CentOS7後可以在圖形化介面中點選右鍵->開啟服務器修改設定後啟用SSH設定,方法如下: 1、先安裝openssh套件 sudo yum install openssh* 2、用 gedit 開啟sshd_config編輯 (不要用vi很難編輯的) sudo gedit /etc/ssh/sshd_config 3、增加可連線SSH帳號 AllowUsers admin (此欄位需要自行新增) 4、修改PORT吧 # 註解拿掉 (可以改成8022PORT或其他PORT都可以) Port 22 搜尋PermitRootLogin吧 # 註解拿掉 PermitRootLogin no 再來把這兩行的 # 註解拿掉 PermitEmptyPasswords no PasswordAuthentication yes 搜尋Protocol設定使用SSHv2連線 Protocol 2 sudo systemctl restart sshd.service    重新啟動service sudo systemctl enable sshd.service    設定開機啟動SSH sudo semanage port -a -t ssh_port_t -p tcp 22      防火牆允許22 PORT 或 sudo firewall-cmd --permanent --zone=public --add-port=22/tcp 重新載入防火牆設定 sudo firewall-cmd --reload sudo  netstat -ant | grep :22 查看 22PORT 查詢現在SELinux設定清單中的SSH服務有哪些Port sudo semanage port -l | grep ssh ssh_port_t tcp 8022, 22 怎麼測試? 格式:登入帳號@IP或主機名稱 指令:-p SSH服務Port號 sudo ssh -p 22 admin@192.168.1.100 如設定的Port在清單中 ,那就表示SSH設定完成防火牆也開啟列外了,之後再用遠端的PuTTY輸入 IP/Port 連線,然後輸入 帳號/密碼,就能用SSH連線進入主機了, 在透