forked from science-ation/science-ation
18 lines
369 B
PHP
18 lines
369 B
PHP
|
<?
|
||
|
|
||
|
function get_value_from_session(string $key, mixed $default = null) : mixed
|
||
|
{
|
||
|
return isset($_SESSION[$key]) ? $_SESSION[$key] : $default;
|
||
|
}
|
||
|
|
||
|
function get_value_from_array(array $ar, string $key, mixed $default = null) : mixed
|
||
|
{
|
||
|
return isset($ar[$key]) ? $ar[$key] : $default;
|
||
|
}
|
||
|
|
||
|
function get_value(mixed $var) : mixed
|
||
|
{
|
||
|
return isset($var) ? $var : null;
|
||
|
}
|
||
|
|
||
|
?>
|