Home Backend Development PHP Tutorial PHP options and related information function library_PHP tutorial

PHP options and related information function library_PHP tutorial

Jul 21, 2016 pm 04:00 PM
error log php information function Library Related Options Configuration mistake

error_log: Send an error message.
error_reporting: Configure the level of error information reporting.
getenv: Get the system environment variable
get_cfg_var: Get the configuration option value of PHP.
get_current_user: Get the owner name of the PHP trip.
get_magic_quotes_gpc: Get the value of PHP environment variable magic_quotes_gpc.
get_magic_quotes_runtime: Get the value of PHP environment variable magic_quotes_runtime.
getlastmod: Returns the last modification time of the web page.
getmyinode: Returns the inode value of the web page.
getmypid: Returns the trip code of PHP.
getmyuid: Returns the user code of PHP.
getrusage: Returns the system resource usage.
phpinfo: Returns all relevant information about PHP.
phpversion : Returns PHP version information.
putenv: Configure system environment variables.
set_magic_quotes_runtime: Configure magic_quotes_runtime value.
set_time_limit: Configure the longest execution time of this page.

int error_log
Syntax: int error_log(string message, int message_type, string [destination], string [extra_headers]);
Return value: integer
Function type: PHP system function
Content description: This function will send error information to the error log file of the Web server, TCP Port, or to the specified file. The first parameter message is the error message to be sent. The second parameter message_type is an integer value: 0 means sending the log to the operating system (UNIX records events in syslog and Windows NT); 1 uses PHP's Mail() function to send the information to an E-Mail. The four parameters extra_headers will also be used; 2 will send the error message to the TCP port, and the third parameter destination represents the destination IP and Port; 3 will save the information in the file destination.
Usage Example
This example is to deal with problems when logging into the Oracle database.
if (!Ora_Logon($username, $password)) {
error_log("Oracle database is unavailable!", 0);
}
if (!( $foo = allocate_new_foo()) {
error_log("It’s annoying!", 1, "webmaster@www.mydomain.com.tw");
}
error_log("Screwed up! ", 2, "127.0.0.1:7000");
error_log("Screwed up!", 2, "loghost");
error_log("Screwed up!", 3, "/var/ tmp/my-errors.log");
?>

error_reporting
Configure the level of error message reporting.
Syntax: int error_reporting(int [level]);
Return value: Integer
Function type: PHP system function
Content description: This function is used to configure the level of error message reporting. The parameter level is an integer bit mask (bitmask), see the table below
Mask The mask value represents the name
1 E_ERROR
2 E_WARNING
4 E_PARSE
8 E_NOTICE
16 E_CORE_ERROR
32 E_CORE_WARNING



E_N OTICE means general situation Not logged, only used when there is an error in the program, such as trying to access a variable that does not exist, or calling the stat() function to view a file that does not exist.
E_WARNING will usually be displayed, but the program will not be interrupted. Execution. This is useful for debugging. For example, calling ereg() with a problematic regular expression will usually show up, meaning that the memory configuration cannot be traced using this mask. or other errors.
E_PARSE parses errors from the syntax.
E_CORE_ERROR is like E_ERROR, but does not include errors caused by PHP core.
E_CORE_WARNING is like E_WARNING, but does not include PHP core error warnings. >
getenv
Get the system environment variable
Syntax: string getenv(string varname);
Return value: String
Function type: PHP System function
Content description: If correct Get the environment variable varname and return the variable value. Returns false on failure.
Usage Example
The following example can obtain the URL of the machine where the user's browser is located
$ip = getenv("REMOTE_ADDR");
?>

get_cfg_var
Get the configuration option value of PHP.
Syntax: string get_cfg_var(string varname);
Return value: String
Function type: PHP system function
Content description: If the current PHP configuration option varname is obtained correctly, the variable value is returned. Returns false on failure.

get_current_user
Get the owner name of the PHP trip.
Syntax: string get_current_user(void);
Return value: String
Function type: PHP system function
Content description: This function is used to obtain the owner name of the PHP program process.
Reference: getmyuid() getmypid() getmyinode() getlastmod()

get_magic_quotes_gpc
Get the value of PHP environment variable magic_quotes_gpc.
Syntax: long get_magic_quotes_gpc(void);
Return value: long integer
Function type: PHP system function
Content description: This function obtains the PHP environment configuration variable magic_quotes_gpc (GPC, Get/Post/ Cookie) value. Returning 0 means turning off this function; returning 1 means turning this function on. When magic_quotes_gpc is turned on, all ' (single quotes), " (double quotes), (backslashes) and null characters will automatically be converted to overflow characters containing backslashes.
Reference: get_magic_quotes_runtime() set_magic_quotes_runtime()

get_magic_quotes_runtime
Get the value of PHP environment variable magic_quotes_runtime
Syntax: long get_magic_quotes_runtime(void);
Return value: long integer
Function type: PHP system function
Content. Description: This function obtains the value of the PHP environment configuration variable magic_quotes_runtime. Returning 0 indicates that this function is turned off; returning 1 indicates that this function is turned on. If magic_quotes_runtime is turned on, all externally imported database data or files will be automatically converted to contain backslashes. Information about overflow characters.
Reference: get_magic_quotes_gpc() set_magic_quotes_runtime()

getlastmod
Returns the last modification time of the web page.
Syntax: int getlastmod(void);
Return value. : Integer
Function type: PHP system function
Content description: This function returns the last modification time of the web page specified by this function. What is returned is the UNIX timestamp (timestamp) format, which can be used with the 4.7.2 date() function Format the return value. If the execution fails, return a false value. Example: The following return value is similar to 'This page was last modified: June 19 1999 20:43:59.'
< ?php
echo "The last modification time of this page: ".date("F d Y H:i:s.", getlastmod());
?>
Reference: date() getmyuid( ) get_current_user() getmyinode() getmypid()

getmyinode
Returns the inode value of the web page.
Syntax: int getmyinode(void);
Return value: Integer
Function type. : PHP system function
Content description: This function returns the inode value of the web page. If the execution fails, a false value is returned.
Reference: getmyuid() get_current_user() getmypid() getlastmod()

getmypid
Return the PHP trip code.
Syntax: int getmypid(void);
Return value: integer
Function type: PHP system function
Content description: This function returns the PHP trip code value (PID). If the execution fails, a false value is returned. When PHP exists as an Apache module, the PID value returned may not be correct.
Reference: getmyuid() get_current_user() getmyinode() getlastmod()

getmyuid
Return the user code of PHP.
Syntax: int getmyuid(void);
Return value: Integer
Function type: PHP system function
Content description: This function returns the user code (UID) of PHP. If the execution fails, a false value is returned.
Reference: getmypid() get_current_user() getmyinode() getlastmod()

getrusage
Returns the system resource usage.
Syntax: array getrusage(int [who]);
Return value: array
Function type: PHP system function
Content description: This function uses the UNIX system call getrusage(2). The returned information is returned in the form of an array. If the parameter who is 1, this function will call RUSAGE_CHILDREN. Further information can be found in the UNIX library documentation.
Usage example
$dat = getrusage();
echo $dat["ru_nswap"]; // Number of Swaps
echo $dat["ru_majflt"]; // Number of pages
echo $dat["ru_utime.tv_sec"]; // Usage time (seconds)
echo $dat["ru_utime.tv_usec"]; // Usage time (milliseconds)
?>

phpinfo
Returns all relevant information about PHP.
Syntax: int phpinfo(void);
Return value: integer
Function type: PHP system function
Content description: This function returns all information of PHP. Includes PHP compilation options and extended configurations, PHP version, server information and environment variables, PHP environment variables, operating system version information, path and environment variable configuration, HTTP headers, and copyright notices.
Reference: phpversion()

phpversion
Return PHP version information.
Syntax: string phpversion(void);
Return value: String
Function type: PHP system function
Content description: This function returns PHP version information.
Usage examples
The return value in the following example is similar to 'The PHP version used by this site is: 3.0.11'
echo "The PHP version used by this site is: ".phpversion();
?>
Reference: phpinfo()

putenv
Configure system environment variables.
Syntax: void putenv(string setting);
Return value: None
Function type: PHP system function
Content description: This function is used to configure system environment variables.
Usage Example
Configure the environment variable NLS_LANG required for Oracle database, and the returned data contains Chinese BIG5 code. putenv("NLS_LANG=american_taiwan.zht16big5");
?>
set_magic_quotes_runtime
Configure magic_quotes_runtime value.
Syntax: long set_magic_quotes_runtime(int new_setting);
Return value: long integer
Function type: PHP system function
Content description
This function is used to configure the magic_quotes_runtime value.
Reference: get_magic_quotes_gpc() get_magic_quotes_runtime()

set_time_limit
Configure the longest execution time of this page.
Syntax: void set_time_limit(int seconds);
Return value: None
Function type: PHP system function
Content description: This function is used to configure the longest execution time of the page. The default value is 30 seconds, which is configured in the max_execution_time variable in php.ini. If it is configured as 0, the maximum time is not limited. The calculation starts when this function is executed. For example, if the default is 30 seconds, and 25 seconds have been executed before this function is executed, and this function is used to change it to 20 seconds, the maximum execution time of the page will be 45 seconds.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/317160.htmlTechArticleerror_log: Send an error message. error_reporting: Configure the level of error information reporting. getenv: Get the system environment variables get_cfg_var: Get the PHP configuration option value. get_current_...
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 Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Hot Topics

Java Tutorial
1670
14
PHP Tutorial
1274
29
C# Tutorial
1256
24
PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP vs. Other Languages: A Comparison PHP vs. Other Languages: A Comparison Apr 13, 2025 am 12:19 AM

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python: Code Examples and Comparison PHP and Python: Code Examples and Comparison Apr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP: Handling Databases and Server-Side Logic PHP: Handling Databases and Server-Side Logic Apr 15, 2025 am 12:15 AM

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

See all articles