set_debug($debug); $loginresults = $unifi_connection->login(); $data = $unifi_connection->list_sites(); /** * we can render the full results in json format */ //echo json_encode($data, JSON_PRETTY_PRINT); /** * or we print each site name and site id */ foreach ($data as $site) { echo 'Site name: ' . $site->desc . ', site id: ' . $site->name . PHP_EOL; } echo PHP_EOL;