sublime text 3使用格式化代码插件CodeFomatter时报错 PHP Deprecated: The each() function is deprecated. - Go语言中文社区

sublime text 3使用格式化代码插件CodeFomatter时报错 PHP Deprecated: The each() function is deprecated.


##问题描述

sublime text 3使用Ctrl+Alt+f快捷键对代码格式化的时候报错如下:

CodeFomatter
Format error:
PHP Deprecated: The each() function is deprecated.This message will be suppressed on further calls in phar://D:/Program Files/Sublime Text 3 /Data/Packages/CodeFormatter/codeformatter/lib/phpbeautifier/phpf.phar/phpf.php on lin 5386

在这里插入图片描述

##分析:
经过网上查找得知,是因为使用的php版本的问题,我本地使用的7.2版本的,7.2版本废弃了each方法,但是codeformatter中却还在使用这个方法,所以就会报错。

##解决:
将CodeFromatter配置中php_path使用的php.exe版本改为低版本的即可。(我本地正常使用的是7.2版本的,但是配置里面使用的是7.0的)

{
    "codeformatter_debug": false,

    "codeformatter_php_options":
    {
        "syntaxes": "php", // Syntax names which must process PHP formatter
        "php_path": "D://Program Files/phpStudy/php/php-7.0.12-nts/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

        // Enable specific transformations. Example: ["ConvertOpenTagWithEcho", "PrettyPrintDocBlocks"]
        // You can list all available transformations from command palette: CodeFormatter: Show PHP Transformations
        "passes": [],

        // Disable specific transformations
        "excludes": []
    }
}

本文地址:https://blog.csdn.net/leedaning/article/details/100104452
Author:leedaning

版权声明:本文来源CSDN,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/leedaning/article/details/100104452
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2020-03-01 18:13:34
  • 阅读 ( 1354 )
  • 分类:

0 条评论

请先 登录 后评论

官方社群

GO教程

猜你喜欢