blob: 8272d81923baf0d3a0c020a822c6c0c7d5d19b74 (
plain)
1
2
3
4
5
6
7
8
|
<?php
header("Content-Type: text/plain");
$fronters = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/ynmuc/fronters.json"), true);
echo(json_encode([
"multiple" => count($fronters["members"]) > 1
]));
|