当前位置: 首页>>代码示例>>PHP>>正文


PHP PEAR_Common::addTempFile方法代码示例

本文整理汇总了PHP中PEAR_Common::addTempFile方法的典型用法代码示例。如果您正苦于以下问题:PHP PEAR_Common::addTempFile方法的具体用法?PHP PEAR_Common::addTempFile怎么用?PHP PEAR_Common::addTempFile使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PEAR_Common的用法示例。


在下文中一共展示了PEAR_Common::addTempFile方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: readFTPConfigFile

 /**
  * @param string url to the remote config file, like ftp://www.example.com/pear/config.ini
  * @return true|PEAR_Error
  */
 function readFTPConfigFile($path)
 {
     do {
         // poor man's try
         if (!class_exists('PEAR_FTP')) {
             if (!class_exists('PEAR_Common')) {
                 require_once 'PEAR/Common.php';
             }
             if (PEAR_Common::isIncludeable('PEAR/FTP.php')) {
                 require_once 'PEAR/FTP.php';
             }
         }
         if (!class_exists('PEAR_FTP')) {
             return PEAR::raiseError('PEAR_RemoteInstaller must be installed to use remote config');
         }
         $this->_ftp =& new PEAR_FTP();
         $this->_ftp->pushErrorHandling(PEAR_ERROR_RETURN);
         $e = $this->_ftp->init($path);
         if (PEAR::isError($e)) {
             $this->_ftp->popErrorHandling();
             return $e;
         }
         $tmp = System::mktemp('-d');
         PEAR_Common::addTempFile($tmp);
         $e = $this->_ftp->get(basename($path), $tmp . DIRECTORY_SEPARATOR . 'pear.ini', false, FTP_BINARY);
         if (PEAR::isError($e)) {
             $this->_ftp->popErrorHandling();
             return $e;
         }
         PEAR_Common::addTempFile($tmp . DIRECTORY_SEPARATOR . 'pear.ini');
         $this->_ftp->disconnect();
         $this->_ftp->popErrorHandling();
         $this->files['ftp'] = $tmp . DIRECTORY_SEPARATOR . 'pear.ini';
         $e = $this->readConfigFile(null, 'ftp');
         if (PEAR::isError($e)) {
             return $e;
         }
         $fail = array();
         foreach ($this->configuration_info as $key => $val) {
             if (in_array($this->getGroup($key), array('File Locations', 'File Locations (Advanced)')) && $this->getType($key) == 'directory') {
                 // any directory configs must be set for this to work
                 if (!isset($this->configuration['ftp'][$key])) {
                     $fail[] = $key;
                 }
             }
         }
         if (!count($fail)) {
             return true;
         }
         $fail = '"' . implode('", "', $fail) . '"';
         unset($this->files['ftp']);
         unset($this->configuration['ftp']);
         return PEAR::raiseError('ERROR: Ftp configuration file must set all ' . 'directory configuration variables.  These variables were not set: ' . $fail);
     } while (false);
     // poor man's catch
     unset($this->files['ftp']);
     return PEAR::raiseError('no remote host specified');
 }
开发者ID:remicollet,项目名称:pear-core,代码行数:62,代码来源:Config.php


注:本文中的PEAR_Common::addTempFile方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。