I would like to return a static string using function, But nothing returned
This function needs to return "I am" So where is the error ? First i tried echo nothing returned then print,print_r also nothing finally var_export or var_dump returns NULL
// Here is the function
function w_is_the_error() {
global $where;
return $where;
}
// I executed here
$the_error = w_is_the_error($where = 'I Am');
// When doing var_export it returns NULL
var_export($the_error);