Author Archives: Help_adm

PHP Misc. Functions

PHP Miscellaneous Introduction The misc. functions were only placed here because none of the other categories seemed to fit. Installation The misc functions are part of the PHP core. There is no installation needed to use these functions. Runtime Configuration The behavior of the misc functions is affected by settings in the php.ini file. Misc.… Read More »

Category: PHP

PHP Math Functions

PHP Math Introduction The math functions can handle values within the range of integer and float types. Installation The math functions are part of the PHP core. There is no installation needed to use these functions. PHP Math Functions PHP: indicates the earliest version of PHP that supports the function. Function Description PHP abs() Returns… Read More »

Category: PHP

PHP Mail Functions

PHP Mail Introduction The mail() function allows you to send emails directly from a script. Requirements For the mail functions to be available, PHP requires an installed and working email system. The program to be used is defined by the configuration settings in the php.ini file. Installation The mail functions are part of the PHP… Read More »

Category: PHP

PHP libxml Functions

PHP libxml Introduction The libxml functions and constants are used together with SimpleXML, XSLT and DOM functions. Installation These functions require the libxml package. Download at xmlsoft.org PHP libxml Functions PHP: indicates the earliest version of PHP that supports the function. Function Description PHP libxml_clear_errors() Clear libxml error buffer 5 libxml_get_errors() Retrieve array of errors… Read More »

Category: PHP

PHP HTTP Functions

PHP HTTP Introduction The HTTP functions let you manipulate information sent to the browser by the Web server, before any other output has been sent. Installation The directory functions are part of the PHP core. There is no installation needed to use these functions. PHP HTTP Functions PHP: indicates the earliest version of PHP that… Read More »

Category: PHP

PHP FTP Functions

PHP FTP Introduction The FTP functions give client access to file servers through the File Transfer Protocol (FTP). The FTP functions are used to open, login and close connections, as well as upload, download, rename, delete, and get information on files from file servers. Not all of the FTP functions will work with every server… Read More »

Category: PHP

PHP Filter Functions

PHP Filter Introduction This PHP filters is used to validate and filter data coming from insecure sources, like user input. Installation The filter functions are part of the PHP core. There is no installation needed to use these functions. PHP Filter Functions PHP: indicates the earliest version of PHP that supports the function. Function Description… Read More »

Category: PHP

PHP Filesystem Functions

PHP Filesystem Introduction The filesystem functions allow you to access and manipulate the filesystem. Installation The filesystem functions are part of the PHP core. There is no installation needed to use these functions. Runtime Configuration The behavior of the filesystem functions is affected by settings in php.ini. Filesystem configuration options: Name Default Description Changeable allow_url_fopen… Read More »

Category: PHP

PHP Error and Logging Functions

PHP Error and Logging Introduction The error and logging functions allows error handling and logging. The error functions allow users to define error handling rules, and modify the way the errors can be logged. The logging functions allow users to log applications and send log messages to email, system logs or other machines. Installation The… Read More »

Category: PHP

PHP Directory Functions

PHP Directory Introduction The directory functions allow you to retrieve information about directories and their contents. Installation The directory functions are part of the PHP core. There is no installation needed to use these functions. PHP Directory Functions PHP: indicates the earliest version of PHP that supports the function. Function Description PHP chdir() Changes the… Read More »

Category: PHP