<?php
$content = file_get_contents('http://na.lolesports.com/season3/split2/schedule');
preg_match('<time datetime="(.*)"', $content, $match);
$match = $match[1];
echo "$match";
?>
我正在尝试使用它来获取匹配的日期和时间,但页面只需要永久保留并且显示为空白。
答案 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";
?>