New PHP Core Functions Are Introduced in PHP 5.5.x
Some new PHP Core function are introduced to PHP 5.5.x 1. array_column() Syntax: array array_column ( array $array , mixed $column_key [, mixed $index_key = null ] ) – It returns the values from a single column of the array. 2. boolval() Syntax: boolean boolval ( mixed $var ) – Return boolean value of a variable. 3. json_last_error_msg() Syntax: string json_last_error_msg ( void ) – Returns the error string of the last json_encode() / json_decode() call 4. password_get_info() Syntax: array password_get_info ( string $hash ) – This function will returns […]