Even though I’ve been using php for a few months now, I have a quick question (that’s why I’ve posted in the beginners section).
Let’s say you had a custom function.
function name_me_plz ($var_1, $var_2, $var_3 = '') {
// Do stuff here
}
What does $var_3 do? Does it set it to the value I’ve put (which is nothing)? If so, is that considered being null?