Home >Backend Development >PHP Problem >What tools are used to develop PHP?
PHP development tools and their advantages and disadvantages
First of all, you can use Notepad to develop.
Notepad is available on everyone’s computer, which is what we often call txt files. Just change the suffix of txt to PHP. Then edit it however you want. The disadvantage is that there is no syntax highlighting and no syntax tips, so it is not suitable for novices.
The second editing tool is Sublime
It is recommended that you use the Chinese cracked version. Because this is an English software, many friends may not understand English well and may not understand it well.
1. Sublime Text supports syntax highlighting in multiple programming languages and has excellent code auto-completion function
2. It has the code snippet (Snippet) function, which can combine commonly used code snippets Save it and recall it whenever you need it.
3. Support VIM mode, you can use most commands in Vim mode. Supports macros, which simply means recording operations or writing commands yourself, and then playing back the just-recorded operations or commands.
4. Sublime Text also has good expansion capabilities, completely open user-defined configuration and magical and practical editing status recovery functions.
#The third development software is phpstrom.
is a software specially designed for PHP development. Among them, PHP's auto-completion function is very easy to use, and the syntax prompts, highlighting and interface are very friendly. It is highly recommended to use this software for development.
Other advantages:
1. Cross-platform, I can use it under Windows, Linux, and Mac, with completely consistent interface and functions.
2. The UI is pretty good-looking, I use the Darcula theme
The fourth software is notepad.
Supports custom languages; can automatically detect file types, display nodes according to keywords, nodes can be folded/opened freely, and indentation guide lines can also be displayed, and the code display is very layered; can Open dual windows, and multiple sub-windows can be opened in the split window, allowing quick switching of full-screen display mode (F11), supporting the mouse wheel to change the document display ratio; providing some useful tools, such as adjacent row swap positions, macro functions, etc.
Recommended tutorial: PHP video tutorial
The above is the detailed content of What tools are used to develop PHP?. For more information, please follow other related articles on the PHP Chinese website!