PHP Configuration Directives

Handling PHP Configuration Directives

The php.ini file is PHP’s global configuration file, there are 12 different aspects of PHP behavior which includes:

• Language Options
• Safe Mode
• Syntax Highlighting
• Miscellaneous
• Resource Limits
• Error Handling and Logging
• Data Handling
• Paths and Directories
• File Uploads
• fopen Wrappers
• Dynamic Extensions
• Module Settings

The php.ini file is a simple text file, consisting solely of comments and parameter = key assignment pairs. ex.

;
;engine (On, Off)
;
engine = On

Lines beginning with a semicolon are comments; the parameter engine is assigned the value On.
Read More…