doUpsystem.php 706 B

1234567891011121314151617181920212223242526
  1. <?php
  2. include_once('../../updata/version.php');
  3. include_once("../../untils/conn.php");
  4. mysqli_query($con, "set names utf8");
  5. // 获取当前版本号
  6. $current_version = $version;
  7. // 发送HTTP请求获取接口数据
  8. $url = "http://hk7.ldove.cn/updata/Getversion.php";
  9. $data = file_get_contents($url);
  10. // 解析JSON数据并获取version字段
  11. $result = json_decode($data, true);
  12. $new_version = $result['version'];
  13. // 比较版本号并弹窗提示
  14. if ($current_version == $new_version) {
  15. // 当前已经是最新版本
  16. echo "<script>alert('当前已经是最新版本');window.history.back();</script>";
  17. } else if ($current_version < $new_version) {
  18. // 发现新版本,执行更新
  19. }
  20. ?>