search
HomeBackend DevelopmentPHP Tutorial sublime Text2 phpTidy 插件 装配及 BUG修复

sublime Text2 phpTidy 插件 安装及 BUG修复

sublime Text2 编辑器的 phpTidy 插件是用来格式化php代码的工具.

ps:本来是想用 PhpBeautifier的 但安装起来实在是太麻烦了

安装:

首先要安装 package control

点击sublime的菜单栏 view->show console ;现在打开了控制台, 这个控制台有上下两栏, 上面一栏会实时显示sublime执行了什么插件,输出执行结果, 如果你安装的某个插件不能正常运行,应该先在这里看看有没有报错。下面栏是一个输入框,可以运行python代码。我们输入下面的代码点击回车运行, 就能安装好package control了。

import urllib2,os;pf='Package Control.sublime-package';ipp=sublime.installed_packages_path();os.makedirs(ipp) if not os.path.exists(ipp) else None;open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()) 

?运行结束以后,记得重启编辑器,就能在Preferences中看到 package control了



?

安装 phpTidy



?

等待响应

然后输入

phptidy

回车

安装完成

?

BUG:



?

在使用phptidy 格式化 php时 出现以发下BUG

当文件中有中文时 无法格式化

原因分析:字符问题。

解决:

找到?php_tidy.py 这个文件(\Sublime Text 2\Packages\PhpTidy\php_tidy.py)

编辑文件 在最上面加入

import sys

reload(sys)

?

sys.setdefaultencoding('utf-8')



?保存 >> 重启?sublime Text2?

?

好了 问题修复了

附1:

在下面的网址可以查看?Sublime Text 2 都有那些插件

http://wbond.net/sublime_packages/community#sort-installs

附2:

常用插件

Zen Coding

Emmet?7/18/13 v2013.07.18.09.23.04?588124 Installs (28%)

Emmet (ex-Zen Coding) for Sublime Text ?

?

格式化js代码

JsFormat?7/10/13 v2013.07.10.20.36.57?169961 Installs (8%)

Javascript formatting for Sublime Text 2 ? ?

?

GBK 编码包

ConvertToUTF8?7/24/13 v1.2.2?58626 Installs (3%)

For editing and saving files encoded in GBK, BIG5, EUC-KR, EUC-JP, Shift_JIS, etc.

?

语法检验

SublimeLinter?Unknown v1.7.0?301033 Installs (14%)

Inline lint highlighting for the Sublime Text 2 editor

?

高亮显示 "" [] {} 等等

BracketHighlighter?7/16/13 v2013.07.16.23.30.30?288886 Installs (14%)

Bracket and tag highlighter for Sublime Text 2

?

格式化HTML代码

HtmlTidy?4/17/13 v2013.04.17.11.33.31?31973 Installs (2%)

Tidy, clean and prettify your HTML code with this plugin for Sublime Text 2

?

格式化PHP代码

PhpTidy?6/9/13 v2013.06.09.08.26.10?25952 Installs (1%)

Plugin for Sublime Text 2 to format PHP code to meet the WordPress Coding Standards using a modified version of phptidy

?

格式化sql

Format?SQL?2/5/12 v1.0.1?13547 Installs (1%)

Formatting?SQL?statement to a more readable form by using python-sqlparse library

?

在sublime 中 获取HTTP请求

Http?Requester?6/26/13 v2013.06.26.04.30.38?13997 Installs (1%)

HTTP client plugin for Sublime Text 2

?

注释块

DocBlockr?6/18/13 v2013.06.18.11.58.38?138951 Installs (7%)

Simplifies writing?DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript, C & C++

?

跨页查找函数定义及自动完成

SublimeCodeIntel?7/19/13 v2.0.1?226341 Installs (11%)

Full-featured code intelligence and smart autocomplete engine

?

?

?

?

?

?


?

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
sublime怎么用replacesublime怎么用replaceApr 03, 2024 am 05:51 AM

Sublime Text 替换功能允许用户搜索和替换文本。该功能可通过 "查找" 菜单中的 "替换" 选项启用。使用此功能的步骤包括:输入要搜索的文本、输入替换文本、选择是否启用正则表达式、选择替换所有或选择性替换。高级选项包括匹配大小写、匹配整个单词和使用选区。

sublime怎么显示运行结果sublime怎么显示运行结果Apr 03, 2024 am 07:06 AM

Sublime Text 中可通过以下三种方法显示运行结果:使用控制台窗口:打开控制台窗口并使用 print 语句打印结果。使用快速面板:打开快速面板,选择终端选项卡并运行代码。使用第三方插件:安装 SublimeREPL 或 Console 2 等插件,运行代码后结果将在专属窗口中显示。

sublime怎么执行sublime怎么执行Apr 03, 2024 am 07:15 AM

是,Sublime Text可以通过以下步骤执行代码:为特定编程语言安装插件配置构建系统创建构建文件使用键盘快捷键(Mac:Command + B;Windows/Linux:Control + B)执行代码

sublime怎么编写python代码sublime怎么编写python代码Apr 03, 2024 am 05:30 AM

在 Sublime Text 中编写 Python 代码,请按照以下步骤操作:安装 Sublime Text。创建新项目并保存文件为 .py。通过快捷键 Ctrl + B (Windows) / Cmd + B (Mac) 运行 Python 代码。此外,还可以通过安装 Python 插件、设置 Python 解释器、启用自动缩进和语法高亮等方式增强 Python 代码编写体验。

phpstudy配置文件怎么改phpstudy配置文件怎么改Apr 02, 2024 pm 03:57 PM

可以通过以下步骤修改 phpStudy 配置文件:找到配置文件(Windows:C:\Windows\phpStudy\php\php.ini;Mac:/Applications/phpStudy/php/php.ini)使用文本编辑器打开并查找要修改的设置编辑设置的值,如修改时区:date.timezone = Asia/Shanghai保存更改并重启 Apache 服务

sublime怎么运行结果sublime怎么运行结果Apr 03, 2024 am 07:24 AM

在 Sublime 中运行代码的方法包括:使用快捷键 (Ctrl + B)通过菜单 (工具 > 构建 > 运行)使用命令面板 (Ctrl + Shift + P > 输入“运行”)使用构建系统 (工具 > 构建系统 > 选择一个构建系统)设置默认构建系统 (首选项 > 设置 - 用户 > 添加“build_system”键值)

Flask和Sublime Text集成: Python web应用程序开发技巧(第六部分)Flask和Sublime Text集成: Python web应用程序开发技巧(第六部分)Jun 17, 2023 pm 04:08 PM

Flask和SublimeText集成:Pythonweb应用程序开发技巧(第六部分)SublimeText和Flask都是Pythonweb应用程序开发中的重要工具。然而,如何将二者集成起来,使得开发过程更加高效呢?本文将介绍一些SublimeText的插件和配置技巧,帮助你更方便地开发Flask应用程序。一、安装SublimeText插件F

sublime怎么用浏览器打开sublime怎么用浏览器打开Apr 03, 2024 am 05:45 AM

在 Sublime Text 中使用浏览器打开文件,只需:1. 打开文件;2. 将光标置于文件内,按下 Ctrl + Alt + B(Windows)或 Command + Option + B(Mac)快捷键即可。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment