I still don't understand how to read this type checking with symbols ??
and only single ?
and what's the difference. When i want to check the value of data, for an example i try this code:
//using double question mark
$course = isset($params->course_id) ?? NULL; //result that save in db is 0
//using single question mark
$course = isset($params->course_id) ? $params->course_id : NULL; //result that save in db is NULL
when i try to submit empty value the result is different, anybody can explain me?