| <?php
    require_once 'PEAR/Info.php';
    /* 
    If you need to set a http_proxy value at run-time you can use the 
    following, this must be called BEFORE instantiating the PEAR_Info object
    */
    PEAR_Info::setProxy('your.proxy.here');
    /* 
    Optional pear_dir variable, allows you to choose where your PEAR 
    install is, in case its not found 
    */
    $pear_dir = "/path/to/your/pear/files";
    /*
    Instantiate PEAR_Info object
    */
    $info = new PEAR_Info($pear_dir);
    /*
    Show PEAR_Info output
    */
    $info->show();
?> |