aboutsummaryrefslogtreecommitdiff
path: root/search/lastname/data.json
diff options
context:
space:
mode:
Diffstat (limited to 'search/lastname/data.json')
-rw-r--r--search/lastname/data.json/index.php76
1 files changed, 38 insertions, 38 deletions
diff --git a/search/lastname/data.json/index.php b/search/lastname/data.json/index.php
index 861b791..a6c0daa 100644
--- a/search/lastname/data.json/index.php
+++ b/search/lastname/data.json/index.php
@@ -1,39 +1,39 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/../session.php";
-
-/** @var string $_FULLNAME
- * @var string $_USER
- * @var array $_PROFILE
- * @var array $_CONFIG
- */
-
-$data = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/private/data/people.json"), true);
-
-header("Content-Type: application/json");
-
-$arr = [];
-$names = [];
-$counts = [];
-
-foreach ($data as $id => $person) {
- $name = ucfirst(strtolower($person["famname"]));
-
- if (isset($counts[$name])) {
- $counts[$name]++;
- } else {
- $counts[$name] = 1;
- }
- if (!in_array($name, $names)) {
- $names[] = $name;
- }
-}
-
-foreach ($names as $name) {
- $arr[] = [
- 'name' => $name,
- 'occurrences' => $counts[$name] . " personne" . ($counts[$name] > 1 ? "s" : "")
- ];
-}
-
+<?php
+
+require_once $_SERVER['DOCUMENT_ROOT'] . "/../session.php";
+
+/** @var string $_FULLNAME
+ * @var string $_USER
+ * @var array $_PROFILE
+ * @var array $_CONFIG
+ */
+
+$data = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/private/data/people.json"), true);
+
+header("Content-Type: application/json");
+
+$arr = [];
+$names = [];
+$counts = [];
+
+foreach ($data as $id => $person) {
+ $name = ucfirst(strtolower($person["famname"]));
+
+ if (isset($counts[$name])) {
+ $counts[$name]++;
+ } else {
+ $counts[$name] = 1;
+ }
+ if (!in_array($name, $names)) {
+ $names[] = $name;
+ }
+}
+
+foreach ($names as $name) {
+ $arr[] = [
+ 'name' => $name,
+ 'occurrences' => $counts[$name] . " personne" . ($counts[$name] > 1 ? "s" : "")
+ ];
+}
+
echo(json_encode($arr)); \ No newline at end of file