内容简介:检测PHP程序是否兼容 7.0 7.1 7.2 7.3利用 https://github.com/PHPCompatibility/PHPCompatibility地址:https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.4.2/phpcs.phar
检测 PHP 程序是否兼容 7.0 7.1 7.2 7.3
方法:
利用 https://github.com/PHPCompatibility/PHPCompatibility
步骤:
1.下载 phpcs
地址:https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.4.2/phpcs.phar
复制到 /usr/bin/phpcs
2.下载 PHPCompatibility源码:
https://github.com/PHPCompatibility/PHPCompatibility/archive/9.1.1.zip
解压到一个目录如/var/www/html/PHPCompatibility
/var/www/html/PHPCompatibility/下有README.md等文件 。
3.在终端执行:
phpcs --config-set installed_paths /var/www/html/PHPCompatibility
4.运行phpcs -i:
如果有PHPCompatibility说明生效。
5.在要检测的PHP项目目录运行
phpcs -p . --standard=PHPCompatibility
进行兼容性检测。
参考 https://github.com/PHPCompatibility/PHPCompatibility
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Ajax模式与最佳实践
Christian Gross / 李锟、张祖良、蔡毅、赵泽欣 / 电子工业出版社 / 2007-3 / 49.80元
Ajax 正在将我们带入到下一代的网络应用中。 本书深入探讨了动态的网络应用,将Ajax和REST集成在一起作为单独的解决方案。一个很大的优势是,与Ajax相似,REST可以和现今存在的技术一起使用。现在上百万的客户端计算机都是基于Ajax的,上百万的服务器是基于REST的。 无论你是否已经开发过Ajax应用程序,这都是一本理想的书。因为这本书描述了各种各样的模式和最好的实践经验。通过此......一起来看看 《Ajax模式与最佳实践》 这本书的介绍吧!