1
我與氣象局RSS提要的工作:PHP:計算時間的特定值金額顯示RSS提要
$metourl = "http://www.metoffice.gov.uk/public/data/PWSCache/WarningsRSS/Region/UK";
$metoxml = simplexml_load_file($metourl);
$count = $metoxml->channel->item;
我可以很容易地確定是否有任何「天氣預警」(在這種情況下):
if($count && $count->count() >= 1){
我想要做什麼,如果可能的話,是統計
$metoxml->channel->item->warningLevel
下了多少次
'YELLOW'
,或
'RED'
警告時
那麼我可以回聲呢?
E.g. "There are x yellow and x red warnings."
。
謝謝!