gpt4 book ai didi

php - 是否可以使用 PHP 中的 cURL 或 Socket 函数确定最新的 jQuery 版本?

转载 作者:行者123 更新时间:2023-12-01 02:00:53 24 4
gpt4 key购买 nike

我正在开发我的开源项目,但我陷入了困境:

How can I determine latest jQuery version from jQuery.com or any other CDN using cURL or Socket functions?

jQuery 的官方网站充满了其他内容,我似乎很难确定哪个“字符串”可能是 jQuery 的当前版本。

感谢大家的帮助和帮助!

最佳答案

只需拉入https://raw.github.com/jquery/jquery/master/package.json

解码json并读取版本

<?php
$json = file_get_contents('https://raw.github.com/jquery/jquery/master/package.json');
$jquery_package = json_decode($json, true);
echo $jquery_package['version']."\n";

如果你想变得更奇特,你也可以使用 github API 并拉取 Repo Tag list并解析每个版本: https://api.github.com/repos/jquery/jquery/tags

关于php - 是否可以使用 PHP 中的 cURL 或 Socket 函数确定最新的 jQuery 版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12925895/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com