The mhash_get_hash_name() function is an inbuilt function in PHP which is used to get the block size of the specified hash. It gets the highest… Read More
Tag Archives: PHP-function
The mhash_get_block_size() function is an inbuilt function in PHP which is used to gets the block size of the specified hash. Gets the highest available… Read More
The money_format() function is an inbuilt function in PHP that returns a number formatted as a currency string. In the main string, the formatted number… Read More
The func_get_arg() function is an inbuilt function in PHP which is used to get a mentioned value from the argument passed as the parameters. Syntax:… Read More
The get_object_vars() function is an inbuilt function in PHP that is used to get the properties of the given object. When an object is made,… Read More
The get_declared_classes() function is an inbuilt function in PHP which is used to return an array with the name of the defined classes. The user… Read More
file_get_contents() Function: This PHP function is used to retrieve the contents of a file. The contents can be stored as a string variable. Alternatively, it… Read More
Given a date and the task is to print the last day of the month. We will use date() and strtotime() function to get the… Read More
The is_object() function is an inbuilt function in PHP which is used to check whether the given value is an object or not. Syntax: bool… Read More
The is_real() function is an inbuilt function in PHP which is used to check the given value is a real number or not. Syntax: bool… Read More
The is_string() function is an inbuilt function in PHP which is used to check whether the given value is a string or not. Syntax: bool… Read More
The is_iterable() function is an inbuilt function in PHP which is used to check whether the contents of a variable is an iterable value or… Read More
The class_exists() function is an inbuilt function in PHP which is used to check whether the given class is defined or not. Syntax: bool class_exists(… Read More
The mysqli_real_escape_string() function is an inbuilt function in PHP which is used to escape all special characters for use in an SQL query. It is… Read More
The isset() function is an inbuilt function in PHP which is used to determine if the variable is declared and its value is not equal… Read More