• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Zend_File_Transfer_Adapter_Abstract类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Zend_File_Transfer_Adapter_Abstract的典型用法代码示例。如果您正苦于以下问题:PHP Zend_File_Transfer_Adapter_Abstract类的具体用法?PHP Zend_File_Transfer_Adapter_Abstract怎么用?PHP Zend_File_Transfer_Adapter_Abstract使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



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

示例1: upload

 /**
  * upload
  * @author Thomas Schedler <[email protected]>
  * @version 1.0
  */
 protected function upload()
 {
     $this->core->logger->debug('massiveart.files.File->upload()');
     try {
         if ($this->objUpload != null && $this->objUpload instanceof Zend_File_Transfer_Adapter_Abstract) {
             /**
              * first check upload path
              */
             $this->checkUploadPath();
             $arrFileInfos = pathinfo($this->objUpload->getFileName($this->_FILE_NAME));
             $this->strExtension = strtolower($arrFileInfos['extension']);
             $this->strTitle = $arrFileInfos['filename'];
             $this->dblSize = $this->objUpload->getFileSize($this->_FILE_NAME);
             $this->strMimeType = $this->objUpload->getMimeType($this->_FILE_NAME);
             /**
              * receive file
              */
             $this->objUpload->addFilter('Rename', $this->getUploadPath() . $this->strFileId . '.' . $this->strExtension, $this->_FILE_NAME);
             $this->objUpload->receive($this->_FILE_NAME);
             /**
              * check public file path
              */
             $this->checkPublicFilePath();
             /**
              * public copy
              */
             //FIXME why ???
             copy($this->getUploadPath() . $this->strFileId . '.' . $this->strExtension, $this->getPublicFilePath() . $this->strFileId . '.' . $this->strExtension);
         }
     } catch (Exception $exc) {
         $this->core->logger->err($exc);
     }
 }
开发者ID:BGCX261,项目名称:zoolu-svn-to-git,代码行数:38,代码来源:file.class.php


示例2: setTransferAdapter

 /**
  * Set transfer adapter
  *
  * @param  string|Zend_File_Transfer_Adapter_Abstract $adapter
  * @return Zend_Form_Element_File
  * @throws Zend_Form_Element_Exception
  */
 public function setTransferAdapter($adapter)
 {
     if ($adapter instanceof Zend_File_Transfer_Adapter_Abstract) {
         $this->_adapter = $adapter;
     } elseif (is_string($adapter)) {
         $loader = $this->getPluginLoader(self::TRANSFER_ADAPTER);
         $class = $loader->load($adapter);
         $this->_adapter = new $class();
     } else {
         throw new Zend_Form_Element_Exception('Invalid adapter specified');
     }
     foreach (array('filter', 'validate') as $type) {
         $loader = $this->getPluginLoader($type);
         $this->_adapter->setPluginLoader($loader, $type);
     }
     return $this;
 }
开发者ID:NerdGZ,项目名称:icingaweb2,代码行数:24,代码来源:File.php


示例3: upload

 /**
  * upload
  * @author Thomas Schedler <[email protected]>
  */
 protected function upload($blnIsNewVersion = false)
 {
     $this->core->logger->debug('massiveart.files.File->upload()');
     try {
         if ($this->objUpload != null && $this->objUpload instanceof Zend_File_Transfer_Adapter_Abstract) {
             /**
              * first check upload path
              */
             $this->checkUploadPath();
             $arrFileInfos = pathinfo($this->objUpload->getFileName($this->_FILE_NAME));
             $this->strExtension = strtolower($arrFileInfos['extension']);
             $this->strTitle = $arrFileInfos['filename'];
             $this->dblSize = $this->objUpload->getFileSize($this->_FILE_NAME);
             $this->strMimeType = $this->objUpload->getMimeType($this->_FILE_NAME);
             if ($blnIsNewVersion == true && $this->objFileData instanceof Zend_Db_Table_Row_Abstract) {
                 $this->strFileId = $this->objFileData->fileId;
             } else {
                 /**
                  * make fileId conform
                  */
                 $this->strFileId = $this->makeFileIdConform($this->strTitle);
                 /**
                  * check uniqueness of fileId
                  */
                 $this->strFileId = $this->checkFileIdUniqueness($this->strFileId);
             }
             /**
              * receive file
              */
             $this->objUpload->addFilter('Rename', array('target' => $this->getUploadPath() . $this->strFileId . '.' . $this->strExtension, 'overwrite' => true), $this->_FILE_NAME);
             $this->objUpload->receive($this->_FILE_NAME);
         }
     } catch (Exception $exc) {
         $this->core->logger->err($exc);
     }
 }
开发者ID:BGCX261,项目名称:zoolu-svn-to-git,代码行数:40,代码来源:file.class.php


示例4: removeValidator

 /**
  * jump over parent 'removeValidator' to remove 'Upload' validator
  * 
  */
 public function removeValidator($name)
 {
     return \Zend_File_Transfer_Adapter_Abstract::removeValidator($name);
 }
开发者ID:rukzuk,项目名称:rukzuk,代码行数:8,代码来源:HttpMock.php


示例5: isValid

 /**
  * Checks if the files are valid
  *
  * @param  string|array $files (Optional) Files to check
  * @return boolean True if all checks are valid
  */
 public function isValid($files = null)
 {
     // Workaround for WebServer not conforming HTTP and omitting CONTENT_LENGTH
     $content = 0;
     if (isset($_SERVER['CONTENT_LENGTH'])) {
         $content = $_SERVER['CONTENT_LENGTH'];
     } else {
         if (!empty($_POST)) {
             $content = serialize($_POST);
         }
     }
     // Workaround for a PHP error returning empty $_FILES when form data exceeds php settings
     if (empty($this->_files) && $content > 0) {
         if (is_array($files)) {
             $files = current($files);
         }
         $temp = array($files => array('name' => $files, 'error' => 1));
         $validator = $this->_validators['Zend_Validate_File_Upload'];
         $validator->setFiles($temp)->isValid($files, null);
         $this->_messages += $validator->getMessages();
         return false;
     }
     return parent::isValid($files);
 }
开发者ID:JaroslavRamba,项目名称:ex-facebook-bundle,代码行数:30,代码来源:Http.php


示例6: isPathWriteable

 public function isPathWriteable($path)
 {
     return parent::_isPathWriteable($path);
 }
开发者ID:netvlies,项目名称:zf,代码行数:4,代码来源:AbstractTest.php


示例7: isValid

 /**
  * Checks if the files are valid
  *
  * @param  string|array $files (Optional) Files to check
  * @return boolean True if all checks are valid
  */
 public function isValid($files = null)
 {
     // Workaround for a PHP error returning empty $_FILES when form data exceeds php settings
     if (empty($this->_files) && $_SERVER['CONTENT_LENGTH'] > 0) {
         if (is_array($files)) {
             $files = current($files);
         }
         $temp = array($files => array('name' => $files, 'error' => 1));
         $validator = $this->_validators['Zend_Validate_File_Upload'];
         $validator->setFiles($temp)->isValid($files, null);
         $this->_messages += $validator->getMessages();
         return false;
     }
     return parent::isValid($files);
 }
开发者ID:bitExpert,项目名称:Tine-2.0-Open-Source-Groupware-and-CRM,代码行数:21,代码来源:Http.php


示例8: handleUpload

 public function handleUpload()
 {
     $validate = $this->validateClass();
     if ($validate !== true) {
         return $validate;
     }
     $translate = Zend_Registry::get("Zend_Translate");
     $zft = new Zend_File_Transfer();
     $this->_adapter = $zft->getAdapter('http');
     if ($this->_adapter->isUploaded()) {
         if ($this->_rename) {
             if (!$this->_useMd5Name) {
                 $name = $this->_name;
             } else {
                 $name = $this->_adapter->getHash('md5');
             }
             if ($this->_useFileExtension) {
                 $extension = substr($this->_adapter->getFileName(null, false), strrpos($this->_adapter->getFileName(null, false), '.') + 1);
                 $name .= '.' . strtolower($extension);
             }
         }
         $path = $this->_genPath($name);
         if (Agana_Util_FileHandle::isWritableDir($path)) {
             $this->_adapter->addValidator('ExcludeExtension', false, 'php,exe,so,dll')->addValidator('Size', false, $this->_sizeLimit)->addValidator('Extension', false, $this->_allowedExtensions)->setDestination($path);
             if ($this->_rename) {
                 $this->_adapter->addFilter('Rename', array('target' => $path . $name, 'overwrite' => true));
             }
             if ($this->_adapter->isValid()) {
                 try {
                     $this->_adapter->receive();
                     $this->_adapter->setOptions(array('useByteString' => false));
                     $file = $this->_adapter->getFileInfo();
                     $file = array_shift($file);
                     $result['name'] = $file['name'];
                     $result['type'] = $file['type'];
                     $result['size'] = $file['size'];
                     /**
                      * Resize images based on dimensions options 
                      */
                     //TODO test if the file uploaded is a image
                     foreach ($this->_dimensions as $sizename => $dim) {
                         $wide = WideImage::load($file['tmp_name']);
                         $imgResult = $wide->resize($dim['width'], $dim['height'], 'inside', 'down');
                         $resizedfilename = Agana_Util_FileHandle::genFileNameByClassification($file['name'], $sizename);
                         if (strpos(strtolower($file['type']), 'png') !== false) {
                             $compression = 8;
                         } else {
                             $compression = 80;
                         }
                         $imgResult->saveToFile($file['destination'] . '/' . $resizedfilename, $compression);
                     }
                     return $result;
                 } catch (Zend_File_Transfer_Exception $e) {
                     return array('error' => $e->getMessage());
                 }
             } else {
                 $error = array();
                 foreach ($this->_adapter->getMessages() as $value) {
                     $error[] = $value;
                 }
                 return array('error' => $translate->_($error));
             }
         } else {
             return array('error' => $translate->_('file could not be created or path is not writable'));
         }
     } else {
         return array('error' => $translate->_('No file uploaded'));
     }
 }
开发者ID:brunopbaffonso,项目名称:ongonline,代码行数:69,代码来源:FileUploader.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Zend_File_Transfer_Adapter_Http类代码示例发布时间:2022-05-23
下一篇:
PHP Zend_Feed_Writer_Renderer_RendererAbstract类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap