PHP version upgrade 5.3.25 to 5.6

后端 未结 2 2029
走了就别回头了
走了就别回头了 2021-02-05 11:52

We have a requirement for upgrading the PHP version (5.3.25) to current stable version which is 5.6.17. So, for this we need to find which approach would be best.

相关标签:
2条回答
  • 2021-02-05 12:10

    On my experience, we upgraded our PHP version from 5.3.28 to 5.6.6 directly because of server upgrades, and one more reason is you can easily check all your modules faster if there's an error rather than checking it on every version.

    What you should keep in mind:

    • deprecated functions
    • if you're using PHP frameworks (CodeIgniter, Laravel, etc.), consider upgrading them too
    • current code implementations
    0 讨论(0)
  • 2021-02-05 12:15

    PHP maintainers upload list of incompatible changes of every release. Here are the documents you may want to read:

    • 5.4 incompatible changes
    • 5.5 incompatible changes
    • 5.6 incompatible changes

    If you have regression tests, you're the lucky man; if you don't, i strongly recommend test every change in virtual environment before real environment update on main server. If you're brave enough, you can try to setup vagrant - this will allow developers to easily share their environment and to reproduce server state as it should be after upgrade to 5.6.

    I also wouldn't recommend partial upgrades, i think it's better to target for 5.6 at the first (and only) migration step.

    0 讨论(0)
提交回复
热议问题