Using Laravel, I created an app to summarize and chat with YouTube videos. Check it out!
Benjamin Crozat
PHP

This is where your php.ini file is

Benjamin Crozat
Published on Nov 2, 2023 0 comments Edit on GitHub
This is where your php.ini file is

Your php.ini file is the control center for setting up your environment. Here are straightforward methods to locate this file.

phpinfo() tells you where your php.ini file is

The quickest path any PHP developer discovers first is through the phpinfo() function. It’s a simple process:

  • Create a new project with a PHP file named index.php.
  • Add the following code:
<?php
phpinfo();
?>
  • Open the project in your web browser.

The “Loaded Configuration File” section will indicate where the active php.ini file is.

phpinfo() in action.

phpinfo() can also be used used in the command line

The equivalent of the phpinfo() function in the command line is the php -i command. Run it, and you will get this kind of output:

phpinfo()
PHP Version => 8.3.0

System => Darwin BenjBook-Pro-14.local 23.1.0 Darwin Kernel Version 23.1.0: Mon Oct  9 21:27:24 PDT 2023; root:xnu-10002.41.9~6/RELEASE_ARM64_T6000 arm64
Build Date => Nov 21 2023 14:40:35
Build System => Darwin Sonoma-arm64.local 23.0.0 Darwin Kernel Version 23.0.0: Thu Aug 17 21:24:15 PDT 2023; root:xnu-10002.1.11~3/RELEASE_ARM64_VMAPPLE arm64
…
Loaded Configuration File => /opt/homebrew/etc/php/8.3/php.ini

Neat, right? But we can do better.

The command line can also pinpoint your php.ini file

For those who favor the command line, PHP provides a straightforward command:

  1. Open the terminal.
  2. Type php --ini and execute it.
  3. The terminal will display the path to the php.ini file.

Using a terminal to run the php –ini command.

Wait, there's more!

Be the first to comment!

Get help or share something of value with other readers!

Great deals for enterprise developers
  • ZoneWatcher
    Get instant alerts on DNS changes across all major providers, before your customers notice.
    25% off for 12 months using the promo code CROZAT.
    Try ZoneWatcher for free
  • Quickly build highly customizable admin panels for Laravel projects.
    20% off on the pro version using the promo code CROZAT.
    Try Backpack for free
  • Summarize and talk to YouTube videos. Bypass ads, sponsors, chit-chat, and get to the point.
    Try Nobinge →
  • Monitor the health of your apps: downtimes, certificates, broken links, and more.
    20% off the first 3 months using the promo code CROZAT.
    Try Oh Dear for free
  • Keep the customers coming; monitor your Google rankings.
    30% off your first month using the promo code WELCOME30
    Try Wincher for free →
The latest community links
- / -