PHP: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
PHP is a programming language predominantly designed and used for web development. | PHP is a programming language predominantly designed and used for web development. | ||
== Using environment variables in INI files == | |||
PHP INI configuration files can take their values from environment variables using <code>${ENV_VAR}</code>, e.g. | |||
date.timezone = ${DATE_TIMEZONE} | |||
== Articles == | == Articles == |
Revision as of 17:25, 25 March 2020
PHP is a programming language predominantly designed and used for web development.
Using environment variables in INI files
PHP INI configuration files can take their values from environment variables using ${ENV_VAR}
, e.g.
date.timezone = ${DATE_TIMEZONE}
Articles
- Managing Environment Variables in PHP
- Using Composer in an Existing Project
- Safe(r) Passwords in PHP - Using bycrpt for safer password storage
- How PHP Environment Variables Actually work