Home Backend Development PHP Tutorial PHP introductory tutorial: php.ini configuration detailed options_PHP tutorial

PHP introductory tutorial: php.ini configuration detailed options_PHP tutorial

Jul 21, 2016 pm 02:56 PM
php php.ini Getting Started Tutorial start up exist yes detailed read Options Configuration

php.ini or php3.ini is PHP at startup The configuration file will be read when. The storage path of this file is /usr/local/lib/. In PHP 3.x version the configuration file is php3.ini ; while in PHP 4.x The version is changed to php.ini. If PHP is installed as a server module, it will be read when the Web server starts executing, and will no longer be read after that. Therefore, if you change the configuration, you need to restart the Web server. If you use the independent PHP CGI method, it will be read once every time.
Depending on the current system configuration, you can use phpinfo() to see it. The following is the option configuration


php_value name value
configuration variable name and value. This option requires PHP 4.x version to be used.

php_flag name on|off
Configure flag boolean variable option. This option requires PHP 4.x version to be used.

php_admin_value name value
Configure Apache configuration file variables. The original configuration in .htaccess was changed to this option configuration. This option requires PHP 4.x version to be used.

php_admin_flag name on|off
Configure the boolean variable as the flag. This option requires PHP 4.x version to be used.

asp_tags boolean
Configuration PHP Program Whether to parse tags (tag) with ASP Script syntax <% %> . This option is only available after PHP 3.0.4 . For more details, please refer to the embedding method section.

auto_append_file string
Configuring this option allows the specified file to be appended to the original PHP The program will be executed automatically later. If the PHP program uses the exit() function, the specified file will not be executed. The parameter string is the file that specifies automatic execution.

auto_prepend_file string
Configuring this option allows the specified file to be automatically executed before the original PHP program. The parameter string is the file that specifies automatic execution.

cgi_ext string
This option configures the extension name of the CGI program.

display_errors boolean
This option configures whether execution error messages should be displayed in the user's browser on the device.

doc_root string
Configuration server file and PHP file placement root directory.

engine boolean
This option needs to be used in the module mode of apache PHP. Configurable whether to use the PHP engine. In httpd.conf add php3_engine on/off You can also configure whether a directory or a virtual website Use the PHP parser.

error_log string
This option is used to configure the error log file. On UNIX systems the parameter string is the file name. Windows NT will log the event in the Event Viewer log. Windows 95/98 does not support system logging.

error_reporting integer
This option is used to configure the level of system logging. Parameter integer is the series flag of the level, which can be added together. The default value is 7, see the table below
Series Description
1
General Errors
2
General warning
4
Parse error
8
Non-critical warning


open_basedir string
This option is used to configure the lowest level directory that provides PHP access. From the files or directories under the specified directory, the PHP program can access them. Using this option is mainly for system security considerations. The parameter string is the bottom directory node to be restricted. It is worth noting that in the UNIX system, if the file or directory under the node has a symbolic link (symbolic link) , it may compromise the purpose of using this option, so considering the design of the directory is also an important task for Webmaster . The default value is that all files are accessible. After PHP 3.0.7 version, multiple underlying directories can be configured.

gpc_order string
Configuration GET/POST/COOKIE Three modules order and rules. The parameter string is the rule to be configured, for example: configured as "GP" means ignoring cookie, and when the access method (method) is the same, replace with POST GET.

ignore_user_abort string
The default value is Off. Used to configure whether to continue processing when the client is disconnected when the transmission is not completed.

include_path string
is PHP program require, include and fopen_with_path File search path for functions such as. The slash direction is different in UNIX or Windows .

log_errors boolean
Specify whether program errors should be recorded in the log in the file.

magic_quotes_gpc boolean
CONFIGURATION GET/POST/COOKIE Special characters for three modules, including single quotes, double quotes, backslashes, and null characters (NUL) Whether to automatically add backslashes as overflow characters.

magic_quotes_runtime boolean
Configure whether to automatically add backslashes to the returned data when overflowing characters occur.

magic_quotes_sybase boolean
Configuration sybase Single quotation marks in the data should be automatically added with backslashes as overflow characters.

max_execution_time integer
Configure the maximum execution time of the program. The unit is seconds.

memory_limit integer
Configure the maximum amount of memory used by the program.

short_open_tag boolean
configures whether to use the short PHP tag (). If not used, you must use php as the beginning of the program. If you want the program to comply with XML requires turning off this function.

track_errors boolean
Turn on this option to make the final error message follow the global variable $php_errormsg.

track_vars boolean
Turn on this option to automatically parse the string entered by the user into variables , without having to deal with it yourself.

upload_tmp_dir string
Specifies the temporary path of the uploaded file.

user_dir string
Specifies the path to the user's root directory.

warn_plus_overloading boolean
If this option is turned on, only English periods can be used between strings (.) link, but the plus sign (+) cannot be used to link strings.

SMTP string
In the Windows series operating systems, it is used to specify the SMTP server for Mail function is used. The parameter string is the SMTP server name.

sendmail_from string
Configuration "From: " string for Windows series operating systems use the mail function.

sendmail_path string
Configuration sendmail Program placement path. For example /usr/sbin/sendmail.

safe_mode boolean
Configuration PHP in Execute in safe mode.

safe_mode_exec_dir string
Configure the path for safe mode program execution.

debugger.host string
Specifies the remote debugging server name, which can be IP or Domain Name.

debugger.port string
Configure the port of the remote debugging server (port).

debugger.enabled boolean
Configure whether it can be in debug mode.

enable_dl boolean
This option requires using apacheModule (Apache module) is only valid. Whether the dl() function used to configure PHP works. When the system is in safe mode (safe-mode) , this option enable cannot be used either dl( ) function.

extension_dir string
Configure the path of the dynamic function.

extension string
PHP
Dynamic extension function to be loaded at startup.

mysql.allow_persistent boolean
Configure whether to allow MySQL Database persistent connections (persistent connections) will affect mysql_pconnect() Function.

mysql.max_persistent integer
Configure each handler to maintain up to a few MySQL persistent connections.

mysql.max_links integer
Configure the maximum number of handlers to open MySQL Connections, including persistent connections.

msql.allow_persistent boolean
Configure whether to allow mSQL Database persistent connections (persistent connections) will affect msql_pconnect() Function.

msql.max_persistent integer
Configure each handler to keep up to several mSQL Continuous connection.

msql.max_links integer
Configure the maximum number of handlers to open mSQL Connections, including persistent connections.

pgsql.allow_persistent boolean
Configure whether to allow Postgres Database persistent connections (persistent connections) will affect pg_pConnect() Function.

pgsql.max_persistent integer
Configure each handler to maintain up to several Postgres persistent connections.

pgsql.max_links integer

  • Total 2 pages:
  • Previous page
  • 1
  • 2
  • Next page

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/364089.htmlTechArticlephp.ini or php3.ini is the configuration file that PHP will read when it starts. The storage path of this file is /usr/local/lib/. In PHP 3.x version, the configuration file is php3.ini; in PHP 4.x version, change...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

See all articles