Home  >  Article  >  Backend Development  >  How to run php script

How to run php script

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-09-25 13:47:5512719browse

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

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;"

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!

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