1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php $config = json_decode(file_get_contents($_SERVER["DOCUMENT_ROOT"] . "/data/projects.json"), true); $listed = []; header("Content-Type: application/json"); foreach ($config as $project) { if ($project["showcase"]) { unset($project["showcase"]); $listed[] = $project; } } die(json_encode($listed));