我有一个php代码,可以下载信息,如何使它从https://www.game.co.uk/en/games/pc-games/all-games/?attributeName1=Genre&attributeValue1=4294965756&cm_mn=TopNav--PC--Games-Horror等网站上下载特定信息,例如游戏内容列表?
我希望代码仅从网站而不是列表中下载PC游戏。如何在php中做到这一点?
<body>
Information to download
<?php
$html=file_get_contents("http://www.addictinggames.com/classics");
echo $html;
?>
</body>
我如何使此代码使用上面提到的php从网站上下载特定信息?