<?php
$url = "http://www.lolking.net/summoner/euw/20849404";
$str = file_get_contents($url);
if (preg_match('/<ul class="personal_ratings"> ([^<]*)<\/ul>/', $str, $matches) > 0) {
echo $matches[1]; //This is text one
}
?>
大家好,我正在尝试从我提供的 $url 中提取所有个人评分信息,但是由于某种原因我找不到像这样提取它的方法,我一直在尝试很多不同的方法,但我想这是我在这里工作的正则表达式知识不足,这可能是一个愚蠢的小错误,但最近几天我一直在寻找解决这个问题。