當前位置: 首頁>>代碼示例>>PHP>>正文


PHP PEAR_Downloader::__construct方法代碼示例

本文整理匯總了PHP中PEAR_Downloader::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP PEAR_Downloader::__construct方法的具體用法?PHP PEAR_Downloader::__construct怎麽用?PHP PEAR_Downloader::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PEAR_Downloader的用法示例。


在下文中一共展示了PEAR_Downloader::__construct方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

 /**
  * PEAR_Installer constructor.
  *
  * @param object $ui user interface object (instance of PEAR_Frontend_*)
  *
  * @access public
  */
 function __construct(&$ui)
 {
     parent::__construct($ui, array(), null);
     $this->setFrontendObject($ui);
     $this->debug = $this->config->get('verbose');
 }
開發者ID:michabbb,項目名稱:pear-core,代碼行數:13,代碼來源:Installer.php

示例2: download

 /**
  * Download any files and their dependencies, if necessary
  *
  * @param array a mixed list of package names, local files, or package.xml
  * @param PEAR_Config
  * @param array options from the command line
  * @param array this is the array that will be populated with packages to
  *              install.  Format of each entry:
  *
  * <code>
  * array('pkg' => 'package_name', 'file' => '/path/to/local/file',
  *    'info' => array() // parsed package.xml
  * );
  * </code>
  * @param array this will be populated with any error messages
  * @param false private recursion variable
  * @param false private recursion variable
  * @param false private recursion variable
  * @deprecated in favor of PEAR_Downloader
  */
 function download($packages, $options, &$config, &$installpackages, &$errors, $installed = false, $willinstall = false, $state = false)
 {
     // trickiness: initialize here
     parent::__construct($this->ui, $options, $config);
     $ret = parent::download($packages);
     $errors = $this->getErrorMsgs();
     $installpackages = $this->getDownloadedPackages();
     trigger_error("PEAR Warning: PEAR_Installer::download() is deprecated " . "in favor of PEAR_Downloader class", E_USER_WARNING);
     return $ret;
 }
開發者ID:Spark-Eleven,項目名稱:revive-adserver,代碼行數:30,代碼來源:Installer.php


注:本文中的PEAR_Downloader::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。