最近在做一个桌面客户端软件,顺手给它加上了在线更新的功能:与服务端的最新软件进行版本比对,如果本地版本低于服务端版本就提示升级。
常规思路是在服务端放个配置文件,里面写入版本号,然后再通过 api 输出。然而这样每次都要手动去修改版本号,难免会手抖将版本号输错。好在,咱们的 php 是万能的因此可以直接用 php 来读取服务器上最新版 exe 的版本号,方便省事可靠!
相关代码如下:
/** * PHP 读取 exedll 文件版本号 * * @auth @腾讯电脑管家(https://zhidao.baidu.com/question/246143241010222924.html) * @param $filename 目标文件 * @return 读取到的版本号 */function getFileVersion($filename){ $fileversion = ''; $fpFile = @fopen($filename, "rb"); $strFileContent = @fread($fpFile, filesize($filename)); fclose($fpFile); if($strFileContent) { $strTagBefore = 'F i l e V e r s i o n '; // 如果使用这行,读取的是 FileVersion // $strTagBefore = 'P r o d u c t V e r s i o n '; // 如果使用这行,读取的是 ProductVersion $strTagAfter = '