bool assert( mixed $assertion [, string $description ] ) — Check if an assertion isFALSE
assert_options(ASSERT_ACTIVE, true);//Allow the use of assert() function
assert_options(ASSERT_WARNING, false);//No warning message is output when assert fails
assert_options(ASSERT_BAIL, true);//Assert terminates code execution after assert fails
assert_options(ASSERT_CALLBACK, 'getMsg');//The code execution is terminated after assert fails.
echo 'Start:<br/>';
assert('mysql_query("")');
echo 'The test was successful! ';
function getMsg(){
echo 'What an error happened! ';
}
mixed assert_options( int $what [, mixed $value ] ) — Set various control options for assert(), or query the current settings
ASSERT_ACTIVE: Whether to enable assert() assertion, ini configuration, default value 1
ASSERT_WARNING: Whether to generate a PHP warning for each failed assertion, ini configuration, default 1
ASSERT_BAIL: Whether to abort execution when assertion fails, ini configuration, default value 0
ASSERT_QUIET_EVAL: Whether to disable error_reporting when evaluating assert expressions, ini configuration assert.quiet_eval, default value 0
ASSERT_CALLBACK: Call the callback function when the assertion fails, ini configuration
assert_options(ASSERT_ACTIVE, true);//Allow the use of assert() function
assert_options(ASSERT_WARNING, false);//No warning message is output when assert fails
assert_options(ASSERT_BAIL, true);//Assert terminates code execution after assert fails
assert_options(ASSERT_CALLBACK, 'getMsg');//The code execution is terminated after assert fails.
echo 'Start:<br/>';
assert(is_int(1.2));//The test result is false
echo 'The test was successful! ';
function getMsg(){
echo 'What an error happened! ';
}
bool dl( string $library ) — Get the value of PHP configuration options Load the specified PHP extension
if(!extension_loaded('sqlite')){//Test whether the specified extension has been activated
$prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : '';
dl($prefix . 'sqlite.' . PHP_SHLIB_SUFFIX);
}
int gc_collect_cycles() — Force collection of all existing garbage cycles
void gc_disable ( void ) — Disable the circular reference collector
void gc_enable ( void ) — Activate the circular reference collector
bool gc_enabled ( void ) — Returns the status of the loop reference counter
string get_cfg_var ( string $option ) — Get the value of PHP configuration options Get the value of PHP configuration options
string get_current_user ( void )—get the current PHP script owner name
array get_defined_constants ([ bool $categorize = false ] )—Returns an associative array of all constants
array get_extension_funcs ( string $module_name )—Returns an array of module function names
print_r(get_extension_funcs("xml"));
string get_include_path ( void ) — Get the current include_path configuration option
array get_included_files ( void )—Returns the array with included and required file names
include '';
include_once '';
require '';
require_once '';
$included_files = get_included_files();
foreach ($included_files as $filename){
echo "$filename\n";
}
array get_loaded_extensions ([ bool $zend_extensions = false ] )—Returns the array of all compiled and loaded module names
bool get_magic_quotes_gpc ( void )—get the configuration options settings for the current magic_quotes_gpc
bool get_magic_quotes_runtime ( void ) — Get the activation status of the current magic_quotes_runtime configuration option
string getenv ( string $varname ) — Get the value of an environment variable
$ip = getenv('REMOTE_ADDR');
int getlastmod ( void )—get the last time the page was modified
int getmygid ( void )—get the GID of the current PHP script owner
int getmyinode ( void )—get the inode of the current script (inode)
int getmypid ( void )—get the ID of the PHP process
int getmyuid ( void )—get the UID of the PHP script owner
array getopt ( string $options [, array $longopts ] )—get options from the command line parameter list
array gettrusage ([ int $who = 0 ] ) — Get the current resource usage status
array ini_get_all ([ string $extension [, bool $details = true ]] ) — Get all configuration options
print_r(ini_get_all("pcre"));
print_r(ini_get_all());
string ini_get ( string $varname ) — Get the value of a configuration option
void ini_restore ( string $varname )—Restore default values for configuration options
string ini_set ( string $varname , string $newvalue )—sets a value for a configuration option
main — Virtual main()int memory_get_peak_usage ([ bool $real_usage = false ] ) — Returns the peak memory allocated to PHP memory int memory_get_usage ([ bool $real_usage = false ] ) — Returns the amount of memory allocated to PHP
string php_ini_loaded_file ( void ) — Get the path to the loaded file
string php_ini_scanned_files ( void )—Returns a list of .ini files parsed from the extra ini directory
string php_sapi_name ( void ) — Returns the interface type between the web server and PHP
string php_uname ([ string $mode = "a" ] )—Returns information about the system running PHP
'a': This is the default all.
's': Operating system name
'n': Host name. For example: .
'r': Version name, for example: 5.1.2-RELEASE.
'v': Version information. There are big differences between operating systems.
'm': Machine type. For example: i386.
bool phpcredits ([ int $flag = CREDITS_ALL ] ) — Print the PHP contributor list
CREDITS_ALL : All
CREDITS_DOCS: Document group contribution list
CREDITS_FULLPAGE: Commonly used to combine with other flags. Indicates that a separate HTML page containing other flags is required to print.
CREDITS_GENERAL: Universal list: Language Design and Ideas, PHP Authors, and SAPI Modules
CREDITS_GROUP: List of core developers
CREDITS_MODULES: PHP extension module and author
CREDITS_SAPI: PHP's server API module and author
phpcredits(CREDITS_GROUP | CREDITS_DOCS | CREDITS_FULLPAGE);
bool phpinfo ([ int $what = INFO_ALL ] ) — Output information about PHP configuration
string phpversion ([ string $extension ] ) — Get the current PHP version
bool putenv ( string $setting )—sets the value of the environment variable
void restore_include_path ( void ) — Restore the value of the include_path configuration option
string set_include_path ( string $new_include_path ) — Set include_path configuration options
void set_time_limit ( int $seconds )—Sets the maximum execution time of the script, starting from it itself, 0 means unlimited time
string sys_get_temp_dir ( void ) — Returns the directory used for temporary files
mixed version_compare ( string $version1 , string $version2 [, string $operator ] ) — Comparison of two PHP normalized version numeric strings
if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
echo 'My PHP version is very high: ' . PHP_VERSION . "\n";
}
int zend_thread_id ( void ) — Returns the unique identifier of the current thread
string zend_version ( void ) — Get the current version of Zend engine
Copy the codeThe code is as follows:
assert_options(ASSERT_ACTIVE, true);//Allow the use of assert() function
assert_options(ASSERT_WARNING, false);//No warning message is output when assert fails
assert_options(ASSERT_BAIL, true);//Assert terminates code execution after assert fails
assert_options(ASSERT_CALLBACK, 'getMsg');//The code execution is terminated after assert fails.
echo 'Start:<br/>';
assert('mysql_query("")');
echo 'The test was successful! ';
function getMsg(){
echo 'What an error happened! ';
}
mixed assert_options( int $what [, mixed $value ] ) — Set various control options for assert(), or query the current settings
ASSERT_ACTIVE: Whether to enable assert() assertion, ini configuration, default value 1
ASSERT_WARNING: Whether to generate a PHP warning for each failed assertion, ini configuration, default 1
ASSERT_BAIL: Whether to abort execution when assertion fails, ini configuration, default value 0
ASSERT_QUIET_EVAL: Whether to disable error_reporting when evaluating assert expressions, ini configuration assert.quiet_eval, default value 0
ASSERT_CALLBACK: Call the callback function when the assertion fails, ini configuration
Copy the codeThe code is as follows:
assert_options(ASSERT_ACTIVE, true);//Allow the use of assert() function
assert_options(ASSERT_WARNING, false);//No warning message is output when assert fails
assert_options(ASSERT_BAIL, true);//Assert terminates code execution after assert fails
assert_options(ASSERT_CALLBACK, 'getMsg');//The code execution is terminated after assert fails.
echo 'Start:<br/>';
assert(is_int(1.2));//The test result is false
echo 'The test was successful! ';
function getMsg(){
echo 'What an error happened! ';
}
bool dl( string $library ) — Get the value of PHP configuration options Load the specified PHP extension
Copy the codeThe code is as follows:
if(!extension_loaded('sqlite')){//Test whether the specified extension has been activated
$prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : '';
dl($prefix . 'sqlite.' . PHP_SHLIB_SUFFIX);
}
int gc_collect_cycles() — Force collection of all existing garbage cycles
void gc_disable ( void ) — Disable the circular reference collector
void gc_enable ( void ) — Activate the circular reference collector
bool gc_enabled ( void ) — Returns the status of the loop reference counter
string get_cfg_var ( string $option ) — Get the value of PHP configuration options Get the value of PHP configuration options
string get_current_user ( void )—get the current PHP script owner name
array get_defined_constants ([ bool $categorize = false ] )—Returns an associative array of all constants
array get_extension_funcs ( string $module_name )—Returns an array of module function names
Copy the codeThe code is as follows:
print_r(get_extension_funcs("xml"));
string get_include_path ( void ) — Get the current include_path configuration option
array get_included_files ( void )—Returns the array with included and required file names
Copy the codeThe code is as follows:
include '';
include_once '';
require '';
require_once '';
$included_files = get_included_files();
foreach ($included_files as $filename){
echo "$filename\n";
}
array get_loaded_extensions ([ bool $zend_extensions = false ] )—Returns the array of all compiled and loaded module names
bool get_magic_quotes_gpc ( void )—get the configuration options settings for the current magic_quotes_gpc
bool get_magic_quotes_runtime ( void ) — Get the activation status of the current magic_quotes_runtime configuration option
string getenv ( string $varname ) — Get the value of an environment variable
Copy the codeThe code is as follows:
$ip = getenv('REMOTE_ADDR');
int getlastmod ( void )—get the last time the page was modified
int getmygid ( void )—get the GID of the current PHP script owner
int getmyinode ( void )—get the inode of the current script (inode)
int getmypid ( void )—get the ID of the PHP process
int getmyuid ( void )—get the UID of the PHP script owner
array getopt ( string $options [, array $longopts ] )—get options from the command line parameter list
array gettrusage ([ int $who = 0 ] ) — Get the current resource usage status
array ini_get_all ([ string $extension [, bool $details = true ]] ) — Get all configuration options
Copy the codeThe code is as follows:
print_r(ini_get_all("pcre"));
print_r(ini_get_all());
string ini_get ( string $varname ) — Get the value of a configuration option
void ini_restore ( string $varname )—Restore default values for configuration options
string ini_set ( string $varname , string $newvalue )—sets a value for a configuration option
main — Virtual main()int memory_get_peak_usage ([ bool $real_usage = false ] ) — Returns the peak memory allocated to PHP memory int memory_get_usage ([ bool $real_usage = false ] ) — Returns the amount of memory allocated to PHP
string php_ini_loaded_file ( void ) — Get the path to the loaded file
string php_ini_scanned_files ( void )—Returns a list of .ini files parsed from the extra ini directory
string php_sapi_name ( void ) — Returns the interface type between the web server and PHP
string php_uname ([ string $mode = "a" ] )—Returns information about the system running PHP
'a': This is the default all.
's': Operating system name
'n': Host name. For example: .
'r': Version name, for example: 5.1.2-RELEASE.
'v': Version information. There are big differences between operating systems.
'm': Machine type. For example: i386.
bool phpcredits ([ int $flag = CREDITS_ALL ] ) — Print the PHP contributor list
CREDITS_ALL : All
CREDITS_DOCS: Document group contribution list
CREDITS_FULLPAGE: Commonly used to combine with other flags. Indicates that a separate HTML page containing other flags is required to print.
CREDITS_GENERAL: Universal list: Language Design and Ideas, PHP Authors, and SAPI Modules
CREDITS_GROUP: List of core developers
CREDITS_MODULES: PHP extension module and author
CREDITS_SAPI: PHP's server API module and author
Copy the codeThe code is as follows:
phpcredits(CREDITS_GROUP | CREDITS_DOCS | CREDITS_FULLPAGE);
bool phpinfo ([ int $what = INFO_ALL ] ) — Output information about PHP configuration
string phpversion ([ string $extension ] ) — Get the current PHP version
bool putenv ( string $setting )—sets the value of the environment variable
void restore_include_path ( void ) — Restore the value of the include_path configuration option
string set_include_path ( string $new_include_path ) — Set include_path configuration options
void set_time_limit ( int $seconds )—Sets the maximum execution time of the script, starting from it itself, 0 means unlimited time
string sys_get_temp_dir ( void ) — Returns the directory used for temporary files
mixed version_compare ( string $version1 , string $version2 [, string $operator ] ) — Comparison of two PHP normalized version numeric strings
Copy the codeThe code is as follows:
if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
echo 'My PHP version is very high: ' . PHP_VERSION . "\n";
}
int zend_thread_id ( void ) — Returns the unique identifier of the current thread
string zend_version ( void ) — Get the current version of Zend engine