summaryrefslogtreecommitdiff
path: root/pear/scripts/pearcmd-show-config.php
blob: 0ebc70a38a1a87c05caac4fd9724b309a29eeea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

$keys = $config->getKeys();
foreach ($keys as $key) {
    $value = $config->get($key);
    $xi = "";
    if ($config->isDefaulted($key)) {
        $xi .= " (default)";
    }
    if (isset($fallback_done[$key])) {
        $xi .= " (built-in)";
    }
    printf("%s = %s%s\n", $key, $value, $xi);
}

?>