php天气预报获取小功能
2017-10-03 本文已影响33人
寻梦xunm
<?php
//获取天气预报网站的网页内容
$html = file_get_contents("http://www.weather.com.cn/weather1d/101210101.shtml");
//正则表达式
$reg = '#hour3data.+?\[".+?,.+?,(?<tianqi>.+?),(?<wendu>.+?),#';
//如果匹配成功,就输出温度相关的信息
if(preg_match($reg, $html, $mat)){
echo "今天".$mat['tianqi'].",温度".$mat['wendu'];
}
?>