Не понимаю почему не меняется ссылка, должна выводиться первая игра последней страницы, а выводиться первой
require_once('simple_html_dom.php');
function random_game () {
$url = 'https://ru.wikipedia.org/wiki/Категория:Компьютерные_игры_по_алфавиту';
while (true) {
$html = file_get_contents($url);
$html = str_get_html($html);
$addGames = $html->find('div[class=mw-category] li a');
$links = $html->find('a');
foreach ($links as $link) {
if ($link->innertext == 'Следующая страница') {
$targetLinkHref = htmlspecialchars_decode($link->href);
$url = "https://ru.wikipedia.org$targetLinkHref";
} else {
return $addGames;
}
}
}
}
$f = random_game();
echo "$f[0]";