How to run php script

爱喝马黛茶的安东尼
Release: 2023-02-24 20:54:01
Original
12715 people have browsed it

How to run php script

In the windows environment, we can use php.exe to run php files on the command line. Below we will introduce 2 methods of using php.exe.

Related recommendations: "php Getting Started Tutorial"

First, we can use the php command plus the php file path to execute a specific php file.

The specific running code is as follows:

php \wamp\www\index.php
Copy after login

You can choose any file to run. The PHP script you specify does not have to have a .php extension. They can have any file name and extension. name.

Second, we can run php code directly through php -r.

The specific running code is as follows:

php -r "echo 111111;"
Copy after login

The above is the detailed content of How to run php script. 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
Popular Tutorials
More>
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!