公司使用了PHP_CodeSniffer,切换了php版本后,提交代码提示:
ERROR: PHP_CodeSniffer requires the tokenizer, xmlwriter and SimpleXML extensions to be enabled. Please enable xmlwriter and SimpleXML;
需要开启xmlwriter和SimpleXML扩展,自己环境是ubuntu20环境;
百度了关键词,没有找到有效的方法,上次解决过一次这种问题,现在又遇到,特做此笔记;
解决办法,安装php-xmlwriter,根据自己对应的版本,安装对应的:
php8.2-xml 8.2.0~beta2-1+ubuntu20.04.1+deb.sury.org+1
php8.1-xml 8.1.9-1+ubuntu20.04.1+deb.sury.org+1
php8.0-xml 1:8.0.22-1+ubuntu20.04.1+deb.sury.org+1
php7.4-xml 1:7.4.30-5+ubuntu20.04.1+deb.sury.org+1
php7.3-xml 7.3.33-5+ubuntu20.04.1+deb.sury.org+1
php7.2-xml 7.2.34-33+ubuntu20.04.1+deb.sury.org+1
php7.1-xml 7.1.33-48+ubuntu20.04.1+deb.sury.org+1
我的php版本是8.0,所以执行sudo apt-get install php8.0-xml安装即可;
最后验证php -m 查看就有了xmlwriter;