, php.ini, PHPRC. , , "".
PHP:
http://php.net/manual/en/configuration.file.php
Windows - " "; " " "" "" , "" , " " "" , "PHPRC" .ini ... , C:\MAMP\conf\php5.6.28.
( Win 7, , )
You can check its operation by executing php --inifrom the command line, the output should look something like this:
Configuration File (php.ini) Path: C:\Windows
Loaded Configuration File: C:\MAMP\conf\php5.6.28\php.ini
Scan for additional .ini files in: (none)
Additional .ini files parsed: (none)
you can also do it echo %PHPRC%from the Windows command line or echo $PHPRCfrom Cygwin / bash / MinGW, etc. You will have to restart all existing terminal sessions for this to take effect, but in my experience this works for all three, since bash environments also inherit Windows environment variables.
source
share