<?php

function isTestPilot()
{
    return $_SERVER['HTTP_HOST'] === 'testpilot.richardroberts.me.uk' || $_SERVER['HTTP_HOST'] === 'localhost';
}

function debugIfTestpilot($thingToInspect, $description = null)
{
    if (isTestPilot()) {
        echo "<!--\n\n" . ($description ?? "Debug info") . ":\n\n";
        if (is_object($thingToInspect) || is_array($thingToInspect)) {
            print_r($thingToInspect);
        } else {
            echo $thingToInspect;
        }
        echo "\n\n-->\n\n";
    }
}

function debugInlineIfTestpilot($thingToInspect, $description = null)
{
    if (isTestPilot()) {
        echo '<xmp>';
        echo ($description ?? "Debug info") . ":\n\n";
        if (is_object($thingToInspect) || is_array($thingToInspect)) {
            print_r($thingToInspect);
        } else {
            echo $thingToInspect;
        }
        echo '</xmp>';
    }
}
