Sublime3使用codeFomatter出现PHP Deprecated: The each() function is deprecated
Sublime3使用ctrl+Alt+F格式化php代码时,遇到
出错的原因:
php7.2废弃了each方法,但是codeformatter中却还在使用这个方法,所以就会报错
解决方法:
修改codeformatter配置,php_path,改为低版本的即可
"codeformatter_php_options": { "syntaxes": "php", // Syntax names which must process PHP formatter "php_path": "D:/wamp64/bin/php/php7.1.29/php.exe", // Path for PHP executable, e.g. "/usr/lib/php" or "C:/Program Files/PHP/php.exe". If empty, uses command "php" from system environments "format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$" "php55_compat": false, // PHP 5.5 compatible mode "psr1": false, // Activate PSR1 style "psr1_naming": false, // Activate PSR1 style - Section 3 and 4.3 - Class and method names case "psr2": true, // Activate PSR2 style "indent_with_space": 4, // Use spaces instead of tabs for indentation "enable_auto_align": true, // Enable auto align of = and => "visibility_order": true, // Fixes visibility order for method in classes - PSR-2 4.2 "smart_linebreak_after_curly": true, // Convert multistatement blocks into multiline blocks "passes": [], "excludes": [] },