mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
10 lines
226 B
PHP
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);
|
|
|
|
?>
|