有没有可能通过WebAPI从Steam获取游戏的价格?
您可以查看GetSupportedAPIList(可用的
here),看到似乎没有办法获得应用程序的价格.
编辑这里是您在评论中要求的代码:
示例代码有点大,因为我必须设置欧元符号的编码才能正常显示,但是您应该可以从中提取所需的内容:
<html>
<head>
<Meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<?PHP
$string = "Other Data in the document<div class=\"game_purchase_price price\" itemprop=\"price\">49,99€</div>Some More Data!";
$regex = "/\<div class\=\"game_purchase_price price\" itemprop\=\"price\"\>(.*?)\<\/div\>/";
preg_match_all($regex,$string,$matches);
for($i = 0; $i < count($matches[1]); $i++)
{
$match = $matches[1][$i];
echo $match;
}
?>
</body>
</html>
我在字符串中添加了“垃圾”,所以你可以看到表达式将能够提取价格,即使一个更大的文档包含div.