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!