home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / php / pear-installall.php < prev    next >
Encoding:
PHP Script  |  2006-04-07  |  248 b   |  13 lines

  1. <?php
  2. // php -f pear-installall.php
  3. $lines = file ('pearlist.txt');
  4. $list="pearlist.txt";
  5. $pkt=@file($list);
  6. if(is_array($pkt)) {
  7.   foreach($pkt as $package) {
  8.     $package=trim($package);
  9.     system('pear install -a '.$package);
  10.   }
  11. }
  12. ?>
  13.