PHP mysqli_fetch_assoc() Function
PHP mysqli_fetch_assoc() Function is used to fetch rows as an associative array from the database....
PHP mysqli_fetch_assoc() Function is used to fetch rows as an associative array from the database....
PHP mysqli_fetch_array() Function is used to fetch rows as a numeric array and as an associative or both array from the database....
PHP mysqli_connect_error() Function returns description of the error from the last connection incase of a failure. If the connection is successful, then it returns Null....
PHP mysqli_select_db() Function is used to choose database for the connection. Also You can select the default database using 4th parameter in mysqli_connect() function....
PHP mysqli_connect() Function is used to open a new connection to the MySQL server. mysqli_connect() establishes a connection with MySQL server and returns the connection as an object....
PHP mysqli_query() Function is used to execute mysql query on database. A mysqli_query() function is PHP built-in function....
PHP strtotime() Function is used to convert an English textual datetime into a Unix timestamp. A strtotime() function is PHP built-in function....
PHP file_get_contents() Function is used to read the contents of a file into a string. A file_get_contents() function is PHP built-in function....
PHP strpos() Function is used to find the position of the first occurrence of a substring in a string. PHP strpos() function is PHP built-in function....
PHP str_replace() Function is used to replace all the occurrences of the search string or array of search strings by replacement string or array of replacement strings in the given string or array respectively. PHP str_replace() function is PHP built-in function....
PHP substr() Function is used to return a part of a string. PHP substr() function is PHP built-in function....
PHP unset() Function is used to unset a variable. PHP unset() function is PHP built-in function....
PHP isset() Function is used to check whether the variable is set or declared. Also checks a variable is empty. PHP isset() function is PHP built-in function....
PHP phpinfo() Function is used to check information about PHP's configuration, Predefined Variables, extensions, the PHP version, server information, environment, HTTP headers, and the PHP License etc....
PHP json_decode() Function is used to decode JSON array or a JSON object into a PHP object or an associative array. A json_decode() function is built-in function in PHP....
PHP json_encode() Function is used to encode array value to JSON format. A json_encode() function is built-in function in PHP....
PHP __clone() method is used to create a copy of an object. Objects are always passed by reference or address in Copy Constructor using __clone() method....
PHP abs() Function is used to get absolute (positive) value of numbers. A abs() function is built-in function in PHP....
PHP floor() Function is used to get round a number down to the nearest integer for floating-point number. A floor() function is built-in function in PHP....
PHP ceil() Function is used to get round a number up to the nearest integer. A ceil() function is built-in function in PHP....
PHP rand() Function is used to generate a random integer number. A rand() function is built-in function in PHP....
PHP count() Function is used to get the number of elements in an array. A count() function is built-in function in PHP....
PHP in_array() Function is used to check that a value exists in an array. An in_array() function is built-in function in PHP....
PHP ksort() Function is used to sort associative array in ascending order according to the key. An ksort() function is built-in function in PHP....
PHP krsort() Function...
PHP arsort() Function is used to sort an associative array in descending order. An arsort() function is built-in function in PHP....
PHP asort() Function is used to sort an associative array in ascending order. An asort() function is built-in function in PHP....
PHP rsort() Function is used to sort the elements of the array in descending order. An rsort() function is built-in function in PHP....
PHP sort() Function is used to sort the elements of the array in ascending order. An sort() function is built-in function in PHP....
PHP array_sum() Function returns the sum all values of array. An array_sum() function is built-in function in PHP....
PHP array_unique() Function is used to remove duplicate values from an array. PHP array_unique() function is PHP built-in function....
PHP array_values() Function is used to get all value of array. PHP array_values() function is PHP built-in function....
PHP array_key_exists() Function is used to check if given key exists in the array. If it returns true, then key exists. If it returns false, then key does not exist. PHP array_keys() function is PHP built-in function....
PHP array_keys() Function is used to get keys from array. PHP array_keys() function is PHP built-in function....
PHP array_slice() Function is used to extract a slice of the array. PHP array_slice() function is PHP built-in function....
PHP array_merge() Function is used to merge one or more arrays into one array. PHP array_merge() function is PHP built-in function....
PHP array_combine() Function is used to create an array by using one array for keys and another for its values. PHP array_combine() function is PHP built-in function....
PHP array_search() function is used to search the array for a given value and returns the first corresponding key if successful. PHP array_search() function is PHP built-in function....
PHP array_reverse() function is used to reverse the order of the elements in an array. PHP array_reverse() function is PHP built-in function....
PHP array_replace() function replaces elements of first array with other passed array. The array_replace() function is PHP built-in function....
PHP array_chunk() function is used to split an array into chunks. The array_chunk() function is PHP built-in function....
PHP array_rand() Function returns one or more random key from an array. The array_rand() is a built-in function of PHP....
PHP array_shift() Function...
PHP array_pop() Function is used to remove the last element of an array.The array_pop() is a built-in function of PHP....
PHP array_push() Function is used to push one or more elements into the end of array. The array_push() is a built-in function of PHP...
PHP htmlspecialchars_decode() Function converts the predefined HTML entities back to characters....
PHP htmlspecialchars() Function converts some predefined like &, <,>characters to HTML entities...
PHP htmlentities() Function converts some characters to HTML entities. ...
PHP chunk_split() Function...
PHP lcfirst() Function converts only the first character of a string into lowercase. The lcfirst() Function is php in-built function....
PHP ucfirst() Function converts only the first character of a string into uppercase....
PHP strtolower() Function makes all characters of string to lowercase....
PHP strtoupper() Function makes all characters of string to uppercase....
PHP ucwords() Function is used to convert the first character of each word to uppercase in string. The ucwords() is an in-built function of PHP....
PHP join() Function returns string with separator between two array elements....
PHP implode() Function is used to join array elements into string....
PHP explode() Function converts a string into an array....
PHP sha1_file() Function is used to generate the SHA-1 hash of a file. The sha1_file() function uses the US Secure Hash Algorithm 1....
PHP sha1() Function is used to generate the SHA-1 hash of a string. The sha1() function uses the US Secure Hash Algorithm 1....
PHP md5_file() Function returns the MD5 hash of the file....
PHP md5() function is used to generate the MD5 hash of a string. It returns the hash as a 32 character hexadecimal number. It uses the RSA DATA security. PHP md5() is predefined function....