©
This document uses PHP Chinese website manual Release
PHP7.0 仍在开发过程中,尽管这不太可能发生,但本章节提及的特点和变化在最终的PHP 7.0.0 版本中可能发生变化。 在为您的产品环境部署一个稳定的7.0版本前,请仔细检查这个迁移引导。
尽管PHP7.0是一个新的大版本,我们仍将致力于使迁移变得平缓。 这个版本主要消除在之前版本中不推荐使用的内容,使得语言变得更加通用一致。
这儿有一些值得关注的 少量的兼容性调整 以及 新的特性,同时在生产环境切换PHP版本之前,应该对代码进行测试
参见 PHP 版本迁移指南 5.0.x, 5.1.x, 5.2.x, 5.3.x, 5.4.x, 5.5.x 和 5.6.x.
[#1] bhagwan parge [2015-09-23 10:48:38]
When a new version comes then it becomes a very tedious task to migrate.
I have recently used following ubuntu shell script (or you can create a similar one for windows) to check syntax errors in all of the codebase.
#!/bin/bash
cd /home/bhagvan/restapi
for FILE in `find . -name "*.php"`
do
php -l $FILE;
done