PHP: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 13: | Line 13: | ||
* [http://radar.oreilly.com/2014/01/safeer-passwords-in-php.html Safe(r) Passwords in PHP] - Using bycrpt for safer password storage | * [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://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