
-
All
-
web3.0
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Backend Development
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Web Front-end
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Database
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Operation and Maintenance
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Development Tools
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
PHP Framework
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Common Problem
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Other
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Tech
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
CMS Tutorial
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Java
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
System Tutorial
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Computer Tutorials
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Hardware Tutorial
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Mobile Tutorial
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Software Tutorial
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-
-
Mobile Game Tutorial
-
VSCode
-
sublime
-
notepad
-
git
-
composer
-
SVN
-
GitLab
-
pycharm
-
MyEclipse
-
vim
-
macOS
-
visual studio code
-
eclipse
-
visual studio
-
idea
-

How to install apache and php using yum
How to install apache and php with yum: first execute the command "yum install -y httpd" to install apache; then start apache; then execute the command "yum install -y php" to install php; finally create a new PHP page for testing.
Jul 14, 2020 am 09:38 AM
What should I do if there is no response when I exit the vi editor in Linux and press esc?
Solution to the problem of exiting the vi editor in Linux and no response when pressing esc: 1. Press the q keyboard in normal mode; 2. Select any one of [a-z] or [0-9] as the name of the buffer and prepare to start Record macro; 3. Enter q in non-insert mode to stop macro recording; 4. Use @ and the defined buffer name.
Jul 07, 2020 pm 03:21 PM
How to turn off caching opcache in php
How to turn off the cache in PHP: first log in to the centos server; then enter the PHP configuration directory and use vim to open the configuration file; then view the configuration items and change all values from 1 to 0; finally restart PHP.
Jul 07, 2020 am 09:34 AM
What is the command to exit vim without saving?
The command to exit vim without saving is: ":q". There are other commands in vim, for example: if you do not save the file, the command to force exit is ":q!"; to save the file, the command to exit is ":wq"; to force save the file, the command to exit is ":wq!" .
Jul 06, 2020 am 09:31 AM
Summary of mysql php garbled problem
Solve the problem of mysql php garbled characters: 1. Specify the character set of the database table when creating the database table; 2. Set the character set of mysql; 3. After connecting to the database, set the default character encoding used when transmitting characters between databases; 4. Set the html page The character set used.
Jul 06, 2020 am 09:21 AM
What is the command to exit without saving in vim?
The command to exit without saving in vim is [:q!] which means forced exit without saving, [:w] which means saving but not exiting, [:wq] which means saving and exiting, and [.q] which means exiting.
Jul 04, 2020 pm 02:28 PM
Detailed explanation of CentOS firewalld (firewall) instructions
Below, the centos system tutorial column will introduce the CentOS firewalld (firewall) command to everyone. I hope it will be helpful to friends in need! 1. Check the firewalld status and check the firewalld service status command: systemctl status firewalld..
Jul 03, 2020 pm 01:37 PM
How to understand docer?
This article comes from the docker tutorial. I share my understanding of docker with you. I hope it can help you. Docker can be said to be a terminal command line virtual machine. To be more precise, docker is a virtual environment.
Jul 02, 2020 pm 05:27 PM
What is the vim find and replace command?
The vim search command is [wq] to save and exit, [q] to exit with dimension modification, [q!] to force exit without saving; the vim replacement command is [s/old/new] to replace the first occurrence in the line with new of old, [s/old/new/g] replaces all old in the line with new.
Jun 30, 2020 am 11:28 AM
What are vim page turning and moving commands?
The vim page turning command is to turn the whole page [ctrl-f ctrl-b], to turn the half page [ctrl-d ctlr-u], to turn a line [ctrl-e ctrl-y]; the vim movement command is to jump the line number [ gg file top, G file tail], screen movement [H screen top, M screen middle].
Jun 30, 2020 am 11:17 AM![9 excellent code comparison tools under Linux [Recommended]](https://img.php.cn/upload/article/000/000/020/5ef97f545f01f272.jpg?x-oss-process=image/resize,m_fill,h_135,w_240)
9 excellent code comparison tools under Linux [Recommended]
Below, the Linux tutorial column will introduce to you 9 excellent code comparison tools under Linux. I hope it will be helpful to friends in need! When we write code, we often need to know the differences between two files, or between different versions of the same file. There is a very powerful tool under Windows called...
Jun 29, 2020 pm 01:43 PM
How to install mysql on centos 6.5?
How to install mysql on centos 6.5: First uninstall the local mysql and download the installation package from the official website; then install the downloaded rpm package and change the mysql version; finally install mysql, start mysql and change related configurations.
Jun 24, 2020 am 09:28 AM
How to compile and install php7 from source code
The following takes CentOS 7.2 as an example to install the PHP operating environment. First, open the PHP official website and click Downloads in the navigation bar to enter the download page. Download the latest version of the source code package here. After downloading, upload it to the server. Because PHP installation requires compilation, the server should Ensure that gcc and g++ environments are installed.
Jun 23, 2020 pm 06:00 PM
laravel installation and php-fpm, nginx configuration self-starting
❝I have always used TP for my work. This time when I was building RabbitMQ, I thought of using larave to build it. During the building process, I configured php-fpm and nginx to start automatically. From one installation of laravel to other points, this article will bring you A different experience.❞
Jun 24, 2020 pm 03:35 PM
Hot tools Tags

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

vc9-vc14 (32+64 bit) runtime library collection (link below)
Download the collection of runtime libraries required for phpStudy installation

VC9 32-bit
VC9 32-bit phpstudy integrated installation environment runtime library

PHP programmer toolbox full version
Programmer Toolbox v1.0 PHP Integrated Environment

VC11 32-bit
VC11 32-bit phpstudy integrated installation environment runtime library

SublimeText3 Chinese version
Chinese version, very easy to use
