copy in PHP

Syntax of copy in PHP int copy(string path, string destination[, resource context ]) Copies the file at path to destination. If the operation succeeds, the function returns true; otherwise, it returns false. If the file at the destination exists, it will be replaced. The optional context parameter can make use of a valid context resource … Read more

convert_cyr_string in PHP

Syntax of convert_cyr_string string convert_cyr_string(string value, string from, string to) Converts value from one Cyrillic set to another. The from and to parameters are single character strings representing the set and have the following valid values k koi8-rw Windows-1251i ISO 8859-5a or d x-cp866m x-mac-cyrillic Example

closedir in PHP

Syntax of closedir in PHP void closedir([int handle]) Closes the directory stream referenced by handle. See opendir() for more information on directory streams. If handle is not specified, the most recently opened directory stream is closed. Example of closedir

clearstatcache in PHP

Syntax of clearstatcache void clearstatcache([bool clear_realpath_cache[, string file ]]) Clears the file status functions cache. The next call to any of the file status functions will retrieve the information from the disk. The clear_realpath_cache parameter allows for clearing the realpath cache. The file parameter allows for the clearing of the realpath and stat caches for … Read more