How to find php.ini on Windows

02.18.2022

Intro

The BETWEEN operator allows you to filter for values in between two other values. For example, we could select items that are in a specific date range or houses in between a price range. In this article, we will learn how to use BETWEEN in Postgres.

Finding the ini File

Start by creating an index.php file and paste the following:

<?php

phpinfo();

?>

Then run the following command in the same folder

$ php -S localhost:8000

Navigate to http://locahost:8080

Look for the following line.

Loaded Configuration File 

The page should look something like this:

php info