Wednesday, 13 November 2013

The directory functions allow you to retrieve information about directories and their contents. Installation The PHP directory functions are part of the PHP core. No installation is required to use these functions. PHP 5 Directory Functions Function Description chdir() Changes the current directory chroot() Changes the root directory closedir() ...
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 error and logging functions are part of the PHP core. There is no installation...
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 ...
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 PHP filter_has_var() Checks...
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 or return the same results. The FTP functions became available with PHP 3. These...