How to Quick Run PHP Project on Localhost?

By Hardik Savani November 5, 2023 Category : PHP

Hi Artisan,

Now, let's see an article of how to run php project in wamp. This article goes in detailed on how to run php project in ubuntu. you can understand a concept of how to run php project in xampp. I’m going to show you about how to run php framework program. Alright, let’s dive into the details.

1. Open a terminal or command prompt and navigate to the directory where your PHP project is located.

2. If your project has a index.php file, run the following command:

php -S localhost:8000

This command starts the PHP development server on port 8000 and serves the index.php file.

3. If your project doesn't have an index.php file, but has a different entry point, replace index.php with the name of your entry point file in the command:

php -S localhost:8000 your-entry-point.php

4. Once the server is running, you can access your PHP project by opening a web browser and navigating to http://localhost:8000. If you've configured the server to use a different port, replace 8000 with the appropriate port number.

I hope it can help you...

Tags :
Shares