sublime text 配置php环境
时间: 2023-05-27 07:05:41 浏览: 204
1. 安装PHP环境
首先需要安装PHP环境,可以在官网下载对应的PHP安装包,安装完成后将PHP的可执行文件路径添加到环境变量中。
2. 安装Sublime Text插件
打开Sublime Text,使用快捷键Ctrl+Shift+P打开命令面板,输入install,选择Package Control: Install Package,然后搜索并安装以下插件:
- PHP Companion
- PHP Grammar
- PHP Snippets
安装完成后重启Sublime Text。
3. 配置Sublime Text
打开Sublime Text的配置文件,输入以下内容:
```
{
"auto_complete_commit_on_tab": true,
"auto_complete_with_fields": true,
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"default_line_ending": "unix",
"detect_indentation": false,
"draw_white_space": "all",
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace",
"*.sublime-project",
"*.txt",
"*.md",
"*.markdown",
"*.html",
"*.css",
"*.js",
"*.json",
"*.xml",
"*.yml",
"*.yaml",
"*.ini",
"*.conf",
"*.cfg",
"*.cnf",
"*.plist",
"*.sql",
"*.tpl",
"*.twig",
"*.swp",
"*.swo",
"*.bak",
"*.tmp"
],
"folder_exclude_patterns":
[
".git",
"__pycache__",
"*.egg-info",
"*.egg",
"*.venv",
"*.venv32",
"*.venv64",
"*.virtualenv",
"*.virtualenv32",
"*.virtualenv64",
"*.tox",
"*.dist",
"*.build",
"*.idea",
"*.vscode",
"*.cache",
"*.log",
"*.logs"
],
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_active",
"draw_normal"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"rulers":
[
79
],
"save_on_focus_lost": true,
"show_encoding": true,
"show_line_endings": true,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"use_tab_stops": true,
"word_wrap": true
}
```
然后打开PHP文件,按下Ctrl+Shift+P打开命令面板,输入syntax,选择PHP Grammar。
现在可以使用Sublime Text编辑PHP文件了。
阅读全文