diff options
Diffstat (limited to 'includes/util/bitset.inc')
-rw-r--r-- | includes/util/bitset.inc | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/includes/util/bitset.inc b/includes/util/bitset.inc deleted file mode 100644 index 14f178c..0000000 --- a/includes/util/bitset.inc +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -function parseMetadata ($metadata) { - $metadata["little"] = 0; - - $age = -1; - - if (isset($metadata["birth"]["age"]) && $metadata["birth"]["age"] !== 0) { - $age = $metadata["birth"]["age"]; - } else if (isset($metadata["birth"]["year"]) && $metadata["birth"]["year"] > 1990) { - $age = (int)date('Y') - $metadata["birth"]["year"] + (strtotime(date('Y') . "-" . $metadata["birth"]["date"]) <= time() ? 0 : -1); - } - - if (is_string($age) && isset(explode("-", $age)[1]) && is_numeric(explode("-", $age)[1])) { - $age = (int)explode("-", $age)[1]; - } - - if ($age > 0 && $age <= 10) { - $metadata["little"] = 2; - } else if ($age > 0 && $age <= 15) { - $metadata["little"] = 3; - } - - return $metadata; -}
\ No newline at end of file |