PHP新手,尝试从其他网站提取信息

时间:2013-08-13 01:00:30

标签: php web-scraping

<?php
$content = file_get_contents('http://na.lolesports.com/season3/split2/schedule');

preg_match('<time datetime="(.*)"', $content, $match);
$match = $match[1];

echo "$match";
?>

我正在尝试使用它来获取匹配的日期和时间,但页面只需要永久保留并且显示为空白。

1 个答案:

答案 0 :(得分:1)

正如João Rafael所指出的,>

中的"'之间缺少<time datetime="(.*)"

重新格式化的代码:

<?php
$content = file_get_contents('http://na.lolesports.com/season3/split2/schedule');

preg_match('<time datetime="(.*)">', $content, $match);
$match = $match[1];

echo "$match";
?>