将应用程序从 PHP 5.2 迁移到 5.5
Migrating an app from PHP 5.2 to 5.5
我目前 运行 在 PHP 5.2 服务器上有一个应用程序,我需要将其迁移到 PHP 5.5(或 5.6)服务器。需要注意什么,我可能会遇到什么问题?
提前致谢
基本上,您必须将代码从 5.2 迁移到 5.3,然后迁移到 5.4,然后迁移到 5.5,然后迁移到 5.6。对于每个迁移,PHP 文档列出了您可能遇到的情况:
- 5.2 -> 5.3 : http://php.net/manual/de/migration53.php
- 5.3 -> 5.4 : http://php.net/manual/de/migration54.php
- 5.4 -> 5.5 : http://php.net/manual/de/migration55.php
- 5.5 -> 5.6 : http://php.net/manual/de/migration56.php
查找向后不兼容的更改和弃用的功能。希望能帮到你。
这是有据可查的。
- http://php.net/manual/en/migration53.php
- http://php.net/manual/en/migration54.php
- http://php.net/manual/en/migration55.php
- http://php.net/manual/en/migration56.php
逐一检查这些。这可能是重构您的应用程序的好时机。
我目前 运行 在 PHP 5.2 服务器上有一个应用程序,我需要将其迁移到 PHP 5.5(或 5.6)服务器。需要注意什么,我可能会遇到什么问题? 提前致谢
基本上,您必须将代码从 5.2 迁移到 5.3,然后迁移到 5.4,然后迁移到 5.5,然后迁移到 5.6。对于每个迁移,PHP 文档列出了您可能遇到的情况:
- 5.2 -> 5.3 : http://php.net/manual/de/migration53.php
- 5.3 -> 5.4 : http://php.net/manual/de/migration54.php
- 5.4 -> 5.5 : http://php.net/manual/de/migration55.php
- 5.5 -> 5.6 : http://php.net/manual/de/migration56.php
查找向后不兼容的更改和弃用的功能。希望能帮到你。
这是有据可查的。
- http://php.net/manual/en/migration53.php
- http://php.net/manual/en/migration54.php
- http://php.net/manual/en/migration55.php
- http://php.net/manual/en/migration56.php
逐一检查这些。这可能是重构您的应用程序的好时机。