首页 > 后端开发 > 正文

Sublime Text,php代码格式化插件codeformatter 设置PHP代码格式时报错 怎么处理

2025-04-04 08:51:51 | 我爱编程网

Sublime Text,php代码格式化插件codeformatter 设置PHP代码格式时报错 怎么处理相关内容,小编在这里做了整理,希望能对大家有所帮助,关于Sublime Text,php代码格式化插件codeformatter 设置PHP代码格式时报错 怎么处理信息,一起来了解一下吧!

本文目录一览:

Sublime Text,php代码格式化插件codeformatter 设置PHP代码格式时报错 怎么处理

Sublime Text,php代码格式化插件codeformatter 设置PHP代码格式时报错 怎么处理

{
"codeformatter_debug": false,
"codeformatter_php_options":
{
"syntaxes": "php", // Syntax names which must process PHP formatter
"php_path": "这里改成你php的路径", // 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": []
},
"codeformatter_js_options":
{
"syntaxes": "javascript,json", // Syntax names which must process JS formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 4, // indentation size
"indent_char": " ", // Indent character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"eol": "\n", // EOL symbol
"preserve_newlines": false, // whether existing line breaks should be preserved,
"max_preserve_newlines": 10, // maximum number of line breaks to be preserved in one chunk
"space_in_paren": false, // Add padding spaces within paren, ie. f( a, b )
"space_in_empty_paren": false, // Add padding spaces within paren if parent empty, ie. f( )
"e4x": false, // Pass E4X xml literals through untouched
"jslint_happy": false, // if true, then jslint-stricter mode is enforced. Example function () vs function()
"space_after_anon_function": false, // Space after anonimouse functions
"brace_style": "collapse", // "collapse" | "expand" | "end-expand". put braces on the same line as control statements (default), or put braces on own line (Allman / ANSI style), or just put end braces on own line.
"keep_array_indentation": false, // keep array indentation.
"keep_function_indentation": false, // keep function indentation.
"eval_code": false, // eval code
"unescape_strings": false, // Decode printable characters encoded in xNN notation
"wrap_line_length": 0, // Wrap lines at next opportunity after N characters
"unindent_chained_methods": false, // Unindent chained method calls
"break_chained_methods": false, // Break chained method calls across subsequent lines
"end_with_newline": false, // Add new line at end of file
"comma_first": false, // Add comma first
"operator_position": "before-newline" // Operator position: before-newline, after-newline, preserve-newline
},
"codeformatter_css_options":
{
"syntaxes": "css,less", // Syntax names which must process CSS formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 4, // Indentation size
"indent_char": " ", // Indentation character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"selector_separator_newline": false, // Add new lines after selector separators
"end_with_newline": false, // Add new line of end in file
"newline_between_rules": false, // Add new line between rules
"space_around_combinator": false, // Space around combinator
"eol": "\n" // EOL symbol
},
"codeformatter_scss_options":
{
"syntaxes": "scss,sass", // Indentation size
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 4, // Indentation size
"indent_char": " ", // Indentation character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"selector_separator_newline": false, // Add new lines after selector separators
"end_with_newline": false, // Add new line of end in file
"newline_between_rules": false, // Add new line between rules
"space_around_combinator": false, // Space around combinator
"eol": "\n" // EOL symbol
},
"codeformatter_html_options":
{
"syntaxes": "html,blade,asp,xml", // Syntax names which must process HTML formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"formatter_version": "bs4", // Which formatter to use. Current options are "bs4" and "regexp". If an error occurs while loading the bs4 formatter, the regexp formatter will automatically be used
"indent_size": 4, // indentation size
"indent_char": " ", // Indentation character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"exception_on_tag_mismatch": false, // If the last closing tag is not at the same indentation level as the first opening tag, there's probably a tag mismatch in the file
"expand_javascript": false, // (Under construction) Expand JavaScript inside of <script> tags (also affects CSS purely by coincidence)
"expand_tags": false, // Expand tag attributes onto new lines
"minimum_attribute_count": 2, // Minimum number of attributes needed before tag attributes are expanded to new lines
"first_attribute_on_new_line": false, // Put all attributes on separate lines from the tag (only uses 1 indentation unit as opposed to lining all attributes up with the first)
"reduce_empty_tags": false, // Put closing tags on same line as opening tag if there is no content between them
"reduce_whole_word_tags": false, // Put closing tags on same line as opening tag if there is whole word between them
"custom_singletons": "" // Custom singleton tags for various template languages outside of the HTML5 spec
},
"codeformatter_python_options":
{
"syntaxes": "python", // Syntax names which must process Python formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 1, // indentation size
"indent_with_tabs": true, // Indent with tabs or spaces
"max_char": 80, // Width of output lines in characters.
"assignment": " = ", // This is how the assignment operator is to appear.
"function_param_assignment": "=", // This is how function-parameter assignment should appear.
"function_param_sep": ", ", // This is how function parameters are separated.
"list_sep": ", ", // This is how list items are separated.
"subscript_sep": "=", // This is how subscripts are separated.
"dict_colon": ": ", // This separates dictionary keys from values.
"slice_colon": ":", // this separates the start:end indices of slices.
"comment_prefix": "# ", // This is the sentinel that marks the beginning of a commentary string.
"shebang": "#!/usr/bin/env python", // Hashbang, a line-one comment naming the Python interpreter to Unix shells.
"boilerplate": "", // Standard code block (if any). This is inserted after the module doc string on output.
"blank_line": "", // This is how a blank line is to appear (up to the newline character).
"keep_blank_lines": true, // If true, preserve one blank where blank(s) are encountered.
"add_blank_lines_around_comments": true, // If true, set off comment blocks with blanks.
"add_blank_line_after_doc_string": true, // If true, add blank line after doc strings.
"max_seps_func_def": 3, // Split lines containing longer function definitions.
"max_seps_func_ref": 5, // Split lines containing longer function calls.
"max_seps_series": 5, // Split lines containing longer lists or tuples.
"max_seps_dict": 3, // Split lines containing longer dictionary definitions.
"max_lines_before_split_lit": 2, // Split string literals containing more newline characters.
"left_margin": "", // This is how the left margin is to appear.
"normalize_doc_strings": false, // If true, normalize white space in doc strings.
"leftjust_doc_strings": false, // If true, left justify doc strings.
"wrap_doc_strings": false, // If true, wrap doc strings to max_char.
"leftjust_comments": false, // If true, left justify comments.
"wrap_comments": false, // If true, wrap comments to max_char.
"double_quoted_strings": false, // If true, use quotes instead of apostrophes for string literals.
"single_quoted_strings": false, // If true, use apostrophes instead of quotes for string literals.
"can_split_strings": false, // If true, longer strings are split at the max_char.
"doc_tab_replacement": "....", // This literal replaces tab characters in doc strings and comments.
// Optionally preserve unassigned constants so that code to be tidied
// may contain blocks of commented-out lines that have been no-op'ed
// with leading and trailing triple quotes. Python scripts may declare
// constants without assigning them to a variables, but CodeFormatter
// considers this wasteful and normally elides them.
"keep_unassigned_constants": false,
// Optionally omit parentheses around tuples, which are superfluous
// after all. Normal CodeFormatter behavior will be still to include them
// as a sort of tuple display analogous to list displays, dict
// displays, and yet-to-come set displays.
"parenthesize_tuple_display": true,
// When CodeFormatter splits longer lines because max_seps
// are exceeded, the statement normally is closed before the margin is
// restored. The closing bracket, brace, or parenthesis is placed at the
// current indent level. This looks ugly to "C" programmers. When
// java_style_list_dedent is True, the closing bracket, brace, or
// parenthesis is brought back left to the indent level of the enclosing
// statement.
"java_style_list_dedent": false
},
"codeformatter_vbscript_options":
{
"syntaxes": "vbscript", // Syntax names which must process VBScript formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 1, // indentation size
"indent_char": "\t", // Indentation character
"indent_with_tabs": true, // Indent with one tab (overrides indent_size and indent_char options)
"preserve_newlines": true, // Preserve existing line-breaks
"max_preserve_newlines": 10, // Maximum number of line-breaks to be preserved in one chunk
"opening_tags": "^(Function .*|Sub .*|If .* Then|For .*|Do While .*|Select Case.*)", // List of keywords which open a new block
"middle_tags": "^(Else|ElseIf .* Then|Case .*)$", // List of keywords which divide a block, but neither open or close the block
"closing_tags": "(End Function|End Sub|End If|Next|Loop|End Select)$" // List of keywords which close an open block
},
"codeformatter_coldfusion_options":
{
"syntaxes": "coldfusion,cfm,cfml", // Syntax names which must process Coldfusion Markup Language formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 2, // indentation size
"indent_char": " ", // Indentation character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"exception_on_tag_mismatch": false, // If the last closing tag is not at the same indentation level as the first opening tag, there's probably a tag mismatch in the file
"expand_javascript": false, // (Under construction) Expand JavaScript inside of <script> tags (also affects CSS purely by coincidence)
"expand_tags": false, // Expand tag attributes onto new lines
"minimum_attribute_count": 2, // Minimum number of attributes needed before tag attributes are expanded to new lines
"first_attribute_on_new_line": false, // Put all attributes on separate lines from the tag (only uses 1 indentation unit as opposed to lining all attributes up with the first)
"reduce_empty_tags": false, // Put closing tags on same line as opening tag if there is no content between them
"reduce_whole_word_tags": false, // Put closing tags on same line as opening tag if there is whole word between them
"custom_singletons": "" // Custom singleton tags for various template languages outside of the HTML5 spec
}
}

Sublime Text,php代码格式化插件codeformatter 设置PHP代码格式时报错 怎么处理

sublime text怎么格式化PHP代码

1
首先你得安装好CodeFormatter这个插件,然后打开它的默认配置文件。修改图中的配置项,修改内容为:
"php_path": "Data\\CodeFormatter\\php\\php.exe",
php_path是php.exe文件路径,路径可以是相对路径当然也可以是绝对路径,用相对路径是为了在配置好sublime后将其整个文件夹打包带走在其他电脑直接使用无需再次配置。

2
打开sublime安装目录,在目录下简历“Data”文件夹,在Data文件夹下建立"CodeFormatter"文件夹,在CodeFormatter文件夹下建立"php"文件夹。
3

装wampserver3,然后打开其安装目录\bin\php\php7.0.0,复制文件夹中的php.exe和php7ts.dll两个文件(如下
图1)到第2步建立的路径Data\\CodeFormatter\\php下,复制后你就可以把wampserver卸载掉了,当然你想用wamp那就
留着。(codeformatter要求php版本最低为5.6)最终结果目录结构

4
使用快捷键ctrl+alt+f即可格式化php代码

win10下sublimetexts3添加配置运行php代码编译的图文教程

我爱编程网(https://www.52biancheng.com)小编还为大家带来win10下sublimetexts3添加配置运行php代码编译的图文教程的相关内容。

由于本人重装的WIN10系统不稳定用了7个小时才搞定这个配置!下面就是小编为大家带来的win10下sublime texts3添加配置运行php代码编译的图文教程!一起去看看吧!

软件名称: 代码编辑软件(Sublime Text 3) 3111 汉化绿色版软件大小:15.1MB更新时间:2016-04-26软件名称: Sublime Text 3(高级文本编辑器) v3.0 Build 3126 Beta 官方安装版软件大小:7.33MB更新时间:2016-10-12

方法: 我爱编程网

1、首先 右键点击 我的电脑 属性

2、第二步 点 高级系统设置 然后点击 环境变量 接着 选择Path(路径) 用户编辑 本人把 下载的wampserver 64集成安装环境 路径放在我的 G盘里 默认是 C盘!你们根据自己电脑路径更改!再接着点开下面的系统变量里的path 编辑 在默认路径英文状态输入法下 加个分号; 后面添加 和上面一样的 路径 点击确定!

软件名称: wampserver(php环境一键安装包) v3.0 64位 官方安装免费版 支持win7/win8软件大小:41.4MB更新时间:2016-03-10

3、第三步 点开 编译器的 菜单栏 工具 编译系统 然后点击新建编译系统 未汉化版的是英文new build system 接着 把 带有 make 那段默认的代码全部删除 复制 这段代码 或者手敲上去 注意用英文状态输入!保存到默认文件夹 更名为php.sublime-build!

4、第四步 快捷键WIN+R 弹出运行命令 输出 CMD 然后 在CMD里 输出c:/ 进入C盘 再输入php -h测试 如果和本人电脑一样的显示 表示成功 接着回到编译器测试 输入 PHP代码

5、输入完 PHP代码 保存到 服务器 环境下的 WWW目录 然后 在菜单栏里 设置语法为PHP 编译系统为 PHP 好了 OK大功告成 点击快捷键CTRL+B 弹出 调试的结果?有木有一种成就感自己亲手动手?本人一个字一个字打的 希望你们也会遇到问题自己努力去解决不要躲避!


以上就是Sublime Text,php代码格式化插件codeformatter 设置PHP代码格式时报错 怎么处理全部内容了,了解更多相关信息,关注我爱编程网。更多相关文章关注我爱编程网:www.52biancheng.com

免责声明:文章内容来自网络,如有侵权请及时联系删除。
标签: PHP
与“Sublime Text,php代码格式化插件codeformatter 设置PHP代码格式时报错 怎么处理”相关推荐
如何设置python的编码格式为utf-8
如何设置python的编码格式为utf-8

如何设置python的编码格式为utf-8python的编码格式?#coding=utf-8这是文档编码importsyssys.setdefaultencoding("utf-8")这是设置默认编码方式为utf-8xx.encode("utf-8")这是字符串编码操作importcodecscodecs.open(xx,'r','utf-8"),这是文件

2023-12-20 10:36:52
如何将数据库中数据转化为json格式代码
如何将数据库中数据转化为json格式代码

php中json_decode()code()的使用方法在PHP中,`json_decode()`和`json_encode()`是两个重要的函数,用于JSON数据的编码和解码。`json_decode()`函数接受一个JSON格式的字符串,将其转换为PHP变量,可以输出为对象或关联数组,具体取决于`assoc`参数的设置。例如,`json_decode($json)`会返回一个对象,而`j

2025-03-20 17:52:41
sublime text 3怎么安java插件
sublime text 3怎么安java插件

SublimeText2怎样直接运行代码SublimeText2直接运行代码的步骤如下:1.mac下貌似直接就可以运行javac和java命令的,如果不能直接运行,自行加入java环境变量即可。2.安装完sublimetext2之后,进入如下文件夹:$cd/Users/用户名/Library/ApplicationSupport/SublimeText2/Packag

2024-05-28 19:57:41
php中怎么格式化日期
php中怎么格式化日期

PHP输出图像imagegif、imagejpeg与imagepng函数用法分析本文实例讲述了PHP输出图像imagegif、imagejpeg与imagepng函数用法。分享给大家供大家参考,具体如下:imagegif()、imagejpeg()、imagepng()和imagewbmp()函数分别允许以GIF、JPEG、PNG和WBMP格式将图像输出到浏览器或文件。PHP输出图像

2025-01-01 12:37:17
plt.text怎么格式化输出
plt.text怎么格式化输出

plt.text怎么格式化输出一、使用print()函数在Python中,print()函数支持格式化输出,与C语言的printf类似。1.格式化输出字符串和整数2.格式化输出不同进制数3.格式化输出浮点数二、使用str.format()方法%操作符是传统格式化输出的基本方法,从Python2.6版本开始,为字符串数据新增了一种格式化方法str.format(),它通

2024-01-01 06:15:29
如何将html格式的代码翻译成Java代码在myeclipse环境下运行呢
如何将html格式的代码翻译成Java代码在myeclipse环境下运行呢

Java怎样可以在HTML中使用?静态的html标签是无法直接调用java程序的有几种方法可以实现1、将按钮放到form表单中,当按钮点击时提交表单(或者直接将input的type属性定义成submit),表单可以指向JSP或Servlet,在JSP或Servlet里调用java程序2、在按钮的onclick时间中添加js代码self.location="url";其中u

2024-06-08 22:46:53
PHP如何格式化数字?
PHP如何格式化数字?

PHP如何格式化数字?PHP格式化数字的函数是number_format我建议你去下载一个PHP的使用手册,或者看网上的在线手册也行。关于他的用法如下:语法:stringnumber_format(floatnumber,int[decimals],string[dec_point],string[thousands_sep]);返回值:字符串函数种类:数

2024-07-24 13:57:09
怎么复制网站的php源码怎么复制网站的php源码格式
怎么复制网站的php源码怎么复制网站的php源码格式

怎么复制网站的php源码怎么复制网站的php源码格式php抓取网页源代码的方法可以使用file_get_content函数获取源代码。你只需要把网站传入这个功能就可以了。拿到手之后就是一串。你需要格式化代码。怎么获取某网站的一个php网页源码?PHP是后台代码,一般来说你是获取不了的,因为最后呈现给用户的php网页,都经过php解释器进行转换成html代码了。怎么复制别

2024-10-29 02:10:31