PHP: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
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 == | ||
Line 5: | Line 11: | ||
* [https://lornajane.net/posts/2018/managing-environment-variables-in-php Managing Environment Variables in PHP] | * [https://lornajane.net/posts/2018/managing-environment-variables-in-php Managing Environment Variables in PHP] | ||
* [https://lornajane.net/posts/2013/using-composer-in-an-existing-project Using Composer in an Existing Project] | * [https://lornajane.net/posts/2013/using-composer-in-an-existing-project Using Composer in an Existing Project] | ||
* [http://radar.oreilly.com/2014/01/safeer-passwords-in-php.html Safe(r) Passwords in PHP] - Using bycrpt for safer password storage | |||
* [https://mattallan.me/posts/how-php-environment-variables-actually-work/ How PHP Environment Variables Actually work] | |||
* [https://dustri.org/b/php8-from-a-security-point-of-view.html PHP8, from a security point of view] | |||
[[Category:PHP]] | [[Category:PHP]] | ||
[[Category:Programming]] | [[Category:Programming]] |
Latest revision as of 08:40, 5 June 2023
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
- PHP8, from a security point of view