예제 #1
0
 public static function get($name, $default = false)
 {
     $options = self::all();
     $value = Variable::search($options, $name);
     if (is_null($value)) {
         return $default;
     }
     return $value;
 }