我有以下网站: http ://stationmeteo.meteorologic.net/metar/your-metar.php?icao=LFRS&day=070308
我想从中提取数据。我尝试使用 file_get_contents 和一些正则表达式,但有些东西不起作用。
这是我试过的代码:
$content=file_get_contents('http://stationmeteo.meteorologic.net/metar/your-metar.php? icao=LFMN&day=010513');
preg_match('/00\:30 07\/03\/2008(.+)01\:30 07\/03\/2008/',$content,$m);
echo $m[0];
echo $m[1];
它给了我未定义的偏移量 0 和 1。如果我将网页的内容直接复制到 $content 而不是使用 file_get_contents,它可以正常工作。
我错过了什么?