|
● 即時天氣插圖
● 程 式 目 的 : 從天文台中找取現時天氣插圖資訊 ● 程 式 長 度 : 26 字元 ● 建 立 日 期 : 2009-08-16 ● 使用者能自行製做天氣插像,但必須跟隨天文台的插圖編號,否則將不會用到此程式的功能。 參考網頁: http://www.weather.gov.hk/textonly/explain/wxicon_c.htm $url='http://www.hko.gov.hk/textonly/forecast/chinesewx.htm';
$startb = 16;
$endb = 17;
$fileb=file($url);
for ($ib=$startb;$ib<$endb;$ib++) {
$tempb = $fileb[$ib];
$tempb = explode(" ",$tempb);
}
echo '<'; echo 'img src="http://www.weather.gov.hk/images/wxicon/pic'; echo $tempb[6]; echo'.png"
alt="">'; ● 能修改15行中網址連結 參考網址: http://www.weather.gov.hk/images/wxicon/picXX.png http://img.tvb.com/p/web/images/weather/picXX.gif http://l.yimg.com/mq/i/we/s_wea_XX.gif http://l.yimg.com/mq/i/we/wea_XX.gif |











程 式 簡 介