PHP: Difference between revisions

From Rixort Wiki
Jump to navigation Jump to search
(Created page with "PHP is a programming language predominantly designed and used for web development. Category:PHP")
 
No edit summary
 
(6 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 ==
* [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]
* [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]]

Latest revision as of 09: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