美文网首页
升级vs更新,用词莫忘准确(附PHP版本升级教程)

升级vs更新,用词莫忘准确(附PHP版本升级教程)

作者: Websoft9 | 来源:发表于2021-08-06 09:18 被阅读0次

    升级vs更新

    Web技术日新月异,更新升级是维护工作之一,长时间不更新(升级)的程序,就如长时间不维护的建筑物一样,会加速老化、功能逐渐缺失直至无法使用。而我们最近发现,有的朋友对“更新”和“升级”这两个概念比较混淆,在表述的时候误把这两个词混用了。今天,我们就来聊聊“更新”与“升级”的区别。

    更新或升级这两个词有相近之处,虽然都是从低版本到高版本,但仔细体会它们也有明显的差异。

    在实际升级工作中,主要存在两种形式的版本变化目标:

    • 大版本变化,例如:MySQL5.6->MySQL5.7,PHP5.6->PHP7.0

    • 小版本变化,例如:MySQL5.6.25-->MySQL5.6.30,PHP5.6.33->PHP5.6.37

    程序的大版本变化,是从功能上、架构上都有显著的改变(质变),升级过程复杂,存在升级失败的风险 程序的小版本变化,是从补丁漏洞的角度上提供的更新内容(量变),升级过程相对简单。

    总而言之,大版本变化为“升级”,小版本变化为“更新”。区分这两个词的差别,莫忘用词准确哦~

    PHP版本升级教程

    在实际使用过程中,会遇到升级 PHP 大版本的情形,如:从 PHP5.5->PHP5.6 或 PHP5.6->PHP7.0等。对于我们提供的LAMP环境来说,升级方法非常简单。

    以PHP5.5->PHP5.6为例,具体如下:

    1. 连接到Linux服务器后,依次执行如下命令:

    <pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" lang="text" cid="n19" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">//首先,禁用当前 PHP55 源
    yum-config-manager --disable remi-php55

    //然后,启用需升级 PHP56 源
    yum-config-manager --enable remi-php56

    //最后,升级更新
    yum update -y</pre>

    2.为了确保升级成功,请检查升级后的 PHP 版本

    <pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" lang="text" cid="n21" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">php -v</pre>

    以上方案也适用于 PHP7.0->PHP7.2

    如果您想了解更多PHP有关的安装和升级详细内容,可以阅读我们的PHP实践指南

    相关文章

      网友评论

          本文标题:升级vs更新,用词莫忘准确(附PHP版本升级教程)

          本文链接:https://www.haomeiwen.com/subject/qqdbvltx.html