Home Backend Development PHP Tutorial Dont stop til you get enough PHP options and related information function library

Dont stop til you get enough PHP options and related information function library

Jul 29, 2016 am 08:35 AM

error_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 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 Web Server error log file, 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 handle the problem of logging into the Oracle database.
if (!Ora_Logon($username, $password)) {
error_log("Oracle database is unavailable!", 0);
}
if (!($foo = allocate_new_foo()) {
error_log ("Big trouble!", 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
Configuration error information The level of 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 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_NOTICE represents the general situation of not recording , 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 it will not interrupt the execution of the program. For example, it is very effective for debugging. The regular expression in question is called ereg().
E_ERROR will usually be displayed and will interrupt program execution. This means that memory configuration or other errors cannot be traced from the syntax
E_CORE_ERROR. E_ERROR, but does not include errors caused by PHP core.
E_CORE_WARNING Similar to E_WARNING, but does not include PHP core error warnings
getenv
Get the system environment variables
Syntax: string getenv(string varname);
Return value: String
Function type : PHP system function
Content description: If the environment variable varname is obtained correctly, the variable value will be returned. If it fails, false will be returned.
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 correctly obtained, the variable value is returned. Returns false on failure.
get_current_user
Get the owner name of 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 value of the PHP environment configuration variable magic_quotes_gpc (GPC, Get/Post/Cookie). Returning 0 means turning off this function; returning 1 means turning this function on. When magic_quotes_gpc is turned on, all ' (single quote), " (double quote), (backslash) and null characters will be automatically converted to overflow characters containing backslashes.
Reference: get_magic_quotes_runtime() set_magic_quotes_runtime()
get_magic_quotes_runtime
Get the value of the 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 gets the value of the PHP environment configuration variable magic_quotes_runtime. Returning 0 means closed. This function; returns 1 to indicate 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 data containing backslash 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, and the returned value is UNIX Timestamp (timestamp) format, you can use the 4.7.2 date() function to format the return value. If the execution fails, it will return a false value.
Usage example: The following example returns a value similar to 'This page was last modified: June 19 1999 20 :43:59.'
echo "This page was last modified: ".date("F d Y H:i:s.", getlastmod());
?>
Reference: date( ) getmyuid() get_current_user() getmyinode() getmypid()
getmyinode
Returns the inode value of the webpage.
Syntax: int getmyinode(void);
Return value: Integer
Function type: PHP system function
Content description: This function Return the inode value of the web page. If the execution fails, return the false value.
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 returned PID value 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 PHP user code (UID). 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 of 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 example
The return value in the following example is similar to 'This site uses PHP version: 3.0.11'
echo "This site uses PHP version: ".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.

The above has introduced the Dont stop til you get enough PHP option and related information function library, including the content of Dont stop til you get enough. I hope it will be helpful to friends who are interested in PHP tutorials.

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 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)

11 Best PHP URL Shortener Scripts (Free and Premium) 11 Best PHP URL Shortener Scripts (Free and Premium) Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation Survey Announcement of 2025 PHP Situation Survey Mar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

See all articles