如何在Current Wampserver中更新PHP版本

时间:2017-01-17 03:12:18

标签: php wampserver

我使用Windows 7 32位。我当前的PHP版本为const {app, BrowserWindow, shell, dialog} = require('electron') const {autoUpdater} = require('electron-auto-updater') const path = require('path') const url = require('url') autoUpdater.addListener("update-available", function(event) { dialog.showMessageBox({ title: "A new update is ready to install", message: `Version ${it.version} is downloaded and will be automatically installed on Quit`, buttons: ["OK"] }); }); autoUpdater.addListener("update-downloaded", function(event, releaseNotes, releaseName, releaseDate, updateURL) { autoUpdater.quitAndInstall(); }); autoUpdater.addListener("error", function(error) { dialog.showMessageBox({ title: "Error Happened", message: error, buttons: ["OK"] }); }); autoUpdater.addListener("checking-for-update", function(event) { dialog.showMessageBox({ title: "Checking for update", message: `:l`, buttons: ["OK"] }); }); autoUpdater.addListener("update-not-available", function(event) { dialog.showMessageBox({ title: "No update available", message: `:l`, buttons: ["OK"] }); }); 我想将其设为5.3.5以及更新的版本。我在谷歌搜索但无法找到。我的phpmyAdmin看起来像这样image of phpmyadmin请帮助我解决这个问题并建议我使用方法和步骤。在此先感谢

1 个答案:

答案 0 :(得分:0)

  1. 下载XAMPP的最新便携版本。
  2. 提取存档(不是XAMPP已经安装的地方)。
  3. 从提取的档案中复制PHP文件夹。
  4. 备份已安装的XAMPP目录中的PHP文件夹。您可以备份它,例如将PHP文件夹名称更改为PHP-old或类似PHP-version-number
  5. 粘贴从解压缩的存档中复制的PHP文件夹。
  6. 如果您之前更改了默认设置,请将php.ini文件替换为备份文件夹php.ini文件。
  7. 就是这样,启动/重启服务器。