php.ini configuration options are: 1. "short_open_tag", indicating whether to enable abbreviation form; 2. "precision", indicating the number of significant digits displayed in floating point numbers; 3. "disable_functions", indicating prohibition Some functions and so on.
php.ini configuration options
Name | Default | Remarks |
---|---|---|
short_open_tag | "1" | Whether to enable the abbreviation form (<? ?> ) |
"14" | The number of digits that display significant digits in a floating point number Number | |
"" | Disable certain functions | |
"" | Disable certain classes | |
"" | Whether to expose PHP is installed on the server | |
30 | Maximum execution time | |
128M | Memory limit per script execution | |
NULL | Set the level of error reporting | E_ALL & ~ E_NOTICE & ~E_STRICT & ~E_DEPRECATED
| ##display_errors
Display errors | log_errors | |
Set whether to record error logs to error_log | error_log | |
Set the file to which script errors will be logged | upload_max_filesize | |
Maximum upload file size | post_max_size | |
Set the maximum POST data limit |
The above is the detailed content of What are the php.ini configuration options?. For more information, please follow other related articles on the PHP Chinese website!