Skip to content

Tag Archives: PHP-function

The fnmatch() function in PHP used to match a filename or string against a specified pattern. The pattern and the filename to be checked are… Read More
The is_readable() function in PHP used to check whether the specified file exists and is readable or not. The name of the file is sent… Read More
A ctype_digit() function in PHP used to check each and every character of text are numeric or not. It returns TRUE if all characters of… Read More
The ctype_xdigit() function in PHP used to check each and every character of string/text are hexadecimal digit or not. It return TRUE if all characters… Read More
The is_writable() function in PHP used to check whether the specified file is writable or not. The name of the file is sent as a… Read More
The is_link() function in PHP used to check whether the specified file is a symbolic link or not. The path to the file is sent… Read More
The popen() function used to open a pipe to the program specified by the user using the command parameter. It returns a file pointer which… Read More
The chdir() function in PHP used to change PHP’s current directory to new directory path. It takes only a single argument as new directory path.… Read More
The pathinfo() is an inbuilt function which is used to return information about a path using an associative array or a string. The returned array or… Read More
The ctype_upper() function in PHP used to check each and every character of a given string is in uppercase or not. If the string in… Read More
The ctype_print() Function in PHP used to check each and every character of a string are visible or not. If all characters of string are… Read More
The array_intersect_ukey() function is an inbuilt function in PHP which is used to compute the intersection of two or more array against keys with the… Read More
The link() creates a hard link for a specified target. The target and the link are passed as parameters to the link() function and it… Read More
The array_udiff_assoc() is an inbuilt function in PHP and used for distinguishing between two or more arrays. The function computes the difference arrays from two… Read More
The mkdir() creates a new directory with the specified pathname. The path and mode are sent as parameters to the mkdir() function and it returns… Read More