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


PHP I18n::translatef方法代碼示例

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


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

示例1: title

 /**
  * @return string
  */
 public function title()
 {
     if ($this->isImage()) {
         return I18n::translatef('io/mimetype/image', strtoupper($this->type()));
     }
     return I18n::translatef('io/mimetype/file', strtoupper($this->type()));
 }
開發者ID:evalcodenet,項目名稱:net.evalcode.components.io,代碼行數:10,代碼來源:mimetype.php

示例2: stashFile

 private function stashFile(Io_File $file_, $subPath_ = null)
 {
     $mimeType = $file_->getMimetype();
     if (null === $mimeType) {
         $this->addError(I18n::translatef('ui/panel/upload/file/error/unknown_mimetype', $file_->getName()));
         $file_->delete();
         return;
     }
     if (!$this->isValidMimetype($mimeType) || !$this->isValidFileExtension($file_->getExtension())) {
         $this->addError(I18n::translatef('ui/panel/upload/file/error/illegal_mimetype', $mimeType->title(), $file_->getName()));
         $file_->delete();
         return;
     }
     if ($this->extractArchives && $mimeType->isArchive()) {
         if (false === isset(self::$implArchives[$mimeType->name()])) {
             $this->addError(I18n::translatef('ui/panel/upload/file/error/unsupported_archive', $mimeType->name()));
             $file_->delete();
             return;
         }
         $archiveId = md5($file_->getPathAsString());
         $archiveImpl = self::$implArchives[$mimeType->name()];
         $archivePath = self::uploadPath($archiveId);
         // TODO Io_Archive_Zip
         $archive = new $archiveImpl();
         $archive->open($file_->getPathAsString());
         $archive->extractTo($archivePath);
         $this->scanTemporaryUploadPath(Io::path($archivePath), $subPath_);
         $archive->close();
         $file_->delete();
         return;
     }
     $file = $file_->move(self::uploadPath($subPath_)->getFile($file_->getName()));
     $this->m_files[$subPath_ . $file->getName()] = $file;
 }
開發者ID:evalcodenet,項目名稱:net.evalcode.components.ui,代碼行數:34,代碼來源:file.php


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