Detailed introduction of how php runs on sublime (picture and text)

黄舟
Release: 2023-03-06 19:24:02
Original
4420 people have browsed it

Although there are many answers to this question by just searching, I didn't solve it successfully at the time.
I will write down in detail the steps that are easier to understand and operate.
The first step is to configure the PHP environmentVariables
As shown in Figure 1
1. Find my computer-Properties
2.Advanced system settings
3.Environment variables
4. Find the path in "System Variables" and click Edit
5. Change it to the corresponding PHP address. The next step is to confirm and confirm

Second step, check whether the installation is successful
windows+R
Enter cmd to enter
Enter php -v
It will be displayed as shown in Figure 2. Success

Three steps, set up sublime
Find Tools -build system -newbuild system. In the page that opens, enter the following code

{ "cmd": ["php", "$ file "], "file_regex": "php$", "selector": "source.php" }
Copy after login

and save it in the default directory. Yes,
change the file name to php.sublime-build
and then just write a simple PHP
ctrl+b and you can run it directly
As shown in Figure 3

The above is the detailed content of Detailed introduction of how php runs on sublime (picture and text). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!