function mogublog_tianqi(){
$str = file_get_contents('http://weather1.sina.cn/?code=beijing&vt=1');
$start = mb_strpos($str, '今天 '.date('m').'月'.date('d').'日') + 22;
$result = explode(' ', mb_substr($str, $start, mb_strpos($str, '明天 09月14日') - $start - 8));
array_unshift($result, date('Ymd'));
if(count($result) == 4){
return $result;
}else{
return false;
}
}
Last modification:December 14, 2023
© Allow specification reprint