Monthly Archives: September 2022

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

PHP Date / Time Functions

PHP Date / Time Introduction The date/time functions allow you to extract and format the date and time on the server. Note: These functions depend on the locale settings of the server! Installation The date/time functions are part of the PHP core. There is no installation needed to use these functions. Runtime Configuration The behavior… Read More »

Category: PHP

PHP Calendar Functions

PHP Calendar Introduction The calendar functions are useful when working with different calendar formats. The standard it is based on is the Julian day count (Julian day count is a count of days starting from January 1, 4713 B.C.). Note that the Julian day count is not the same as the Julian calendar! Note: To… Read More »

Category: PHP

PHP Array Functions

PHP Array Introduction The array functions allow you to manipulate arrays. PHP supports both simple and multi-dimensional arrays. There are also specific functions for populating arrays from database queries. Installation The array functions are part of the PHP core. There is no installation needed to use these functions. PHP Array Functions PHP: indicates the earliest… Read More »

Category: PHP