php – 如何在Steam WebAPI中获取应用程序的价格?

前端之家收集整理的这篇文章主要介绍了php – 如何在Steam WebAPI中获取应用程序的价格?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有可能通过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.

原文链接:https://www.f2er.com/php/132411.html

猜你在找的PHP相关文章