1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/pear/scripts/pearcmd-info.php
2002-02-17 15:32:53 +00:00

10 lines
226 B
PHP

<?php
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);
?>