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


PHP Zend_File_Transfer_Adapter_Abstract::getFileSize方法代碼示例

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


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

示例1: upload

 /**
  * upload
  * @author Thomas Schedler <tsh@massiveart.com>
  * @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: upload

 /**
  * upload
  * @author Thomas Schedler <tsh@massiveart.com>
  */
 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


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