php-src/pear/scripts/pearcmd-info.php

10 lines
226 B
PHP
Raw Normal View History

<?php
2002-02-17 15:32:53 +00:00
require_once "PEAR/Common.php";
$parser = new PEAR_Common;
$parser->setErrorHandling(PEAR_ERROR_DIE, "pear info: %s\n");
$info = $parser->infoFromTgzFile($cmdargs[0]);
unset($info['filelist']);
present_array($info);
?>