Universeorange.com/Docs/

R3m/framework Function reference is.set

{is.set(Mixed ...$value)}

Determine if a variable is considered set, this means if a variable is declared and is different from null.
If a variable has been unset with the unset() function, it is no longer considered to be set.
is.set() will return false when checking a variable that has been assigned to null.
Also note that a null character ("\0") is not equivalent to the PHP null constant.
If multiple parameters are supplied then isset() will return true only if all the parameters are considered set.
Evaluation goes from left to right and stops as soon as an unset variable is encountered.

Returns true if var exists and has any value other than null. false otherwise.

More information:

https://www.php.net/manual/en/function.isset.php

Last modified: 2021-06-07

© 2021 universeorange.com