How to run php script in vscode

PHP is a web scripting language that helps us create dynamic and interactive web pages. This guide shows you how to run a PHP file in Visual Studio Code.

This tutorial is geared towards beginners and will take you through the entire process of installing PHP, setting up environmental variables, and setting up VSCode to begin running your PHP program.

Step 1: Install PHP

  1. Go to windows.php.net/download to download PHP. Make sure to download the Zip file from the website.
    Visit the source website to download PHP.
  2. Right-click on the downloaded .zip file and select Extract files…
    Note:
    You can download and install WinRar from win-rar.com
    Right-click on the downloaded file and choose the Extract Files option.
  3. When prompted to choose the Extraction Path, select C: Drive. Then, click on the New Folder button.
    Create a new folder in C: Drive and then Extract the file there.
  4. Give any name to the folder. I will name it “php8”. Then, click OK.
    Enter a filename.

Step 2: Setting Up Environment Variables

To configure PHP, you must add the PHP directory to your system path. Follow these steps:

  1. Copy the address of the folder we extracted 2. In my case, it’s C:\php8.
    Copy the address of the unzipped file.
  2. From the start menu, search for “Path.” When prompted with options, choose Edit the system environment variables.
    Look for “path” in the Start menu, and open the first option that appears.
  3. Click on the Environment Variables button.
    Select the Environment Variables option.
  4. Select the Path under the “Variable” column. Then, select Edit.
    Select the Path option and then click on the Edit button.
  5. Paste the copied path and click on OK.
    Paste the copied path here and then click on the Ok button.

Step 3: Installing Code Runner [VSCode Extension]

Code Runner enables you to run a variety of languages in Visual Studio Code. Follow the below steps to install the Code Runner extension in VS Code:

  1. Launch VSCode
  2. From the sidebar, click on the Extensions tab.
    Open the Extensions tab from the sidebar.
  3. Type “Code Runner” in the search bar and select the first option.
    Search for Code Runner.
  4. Click on the Install button.
    Click on the Install button.

Step 4: Creating A PHP File

You can skip this step if you already have an existing PHP program that you want to run.

If you are creating a PHP program for the first time, follow these steps. I will be making a basic PHP program that prints “Hello World”. Follow these steps:

  1. Create a source file by clicking on the New File icon. Then, type the source file name with a .php extension. For example, I will name it demo.php
    Inside the Explorers tab, click on the New File button.
  2. Write your code inside the editor. For this guide, I will use this code to print Hello World:
    Enter the following code in the editor.
  3. Save the file by pressing Ctrl + S.

Step 5: Running A PHP File

Once you have completed your PHP file, you’re ready to run the code! Follow the steps below:

  1. Click on the Run button on the top-right corner of the VS Code. Alternatively, you can press Ctrl + Alt + N [Command + Option + N for Mac users].
    Click on the Run button.
  2. You’ll notice the output in the terminal.
    This is the output.

How do I run a PHP project in Visual Studio?

How To Run A PHP File in Visual Studio Code.
Step 1: Install PHP..
Step 2: Setting Up Environment Variables..
Step 3: Installing Code Runner [VSCode Extension].
Step 4: Creating A PHP File..
Step 5: Running A PHP File..

How do I run a PHP script?

php” file is placed inside the “htdocs” folder. If you want to run it, open any web browser and enter “localhost/demo. php” and press enter. Your program will run.

How do I Preview PHP code in Visual Studio?

Click the button Open In Browser on StatusBar..
In the editor, right click on the file and click in context menu Open PHP/HTML/JS In Browser..
Use keybindings Shift + F6 to open more faster [can be changed in menu File -> Preferences -> Keyboard Shortcuts ].

How do I start a new PHP project in Visual Studio code?

How to run PHP in Visual Studio Code on Windows 11.
Step 1:Download PHP For Windows 11. ... .
Step 2: Extract Zip File. ... .
Step 3: Set Up Environment Variables. ... .
Step 4: Check PHP VERSION. ... .
Step 5: Install PHP Extensions in Visual Studio Code on Windows 11. ... .
Step 6: Run PHP in Visual Studio Code on Windows 11..

Chủ Đề