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


PHP UploadedFile::openFile方法代碼示例

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


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

示例1: import

 /**
  * Import match plan from text file
  * @param Tournament $tournament Import related to tournament
  * @param String $date Date of match
  * @param String $importStr Match plan - must follow this syntax:
  *                          - Match no
  *                          - Match date (local format - j-m-Y)
  *                          - Match time (local format - G.i)
  *                          - Category name
  *                          - Group name
  *                          - Playground no
  *                          - Home team
  *                                  team name 'division' (country)
  *                                  rank group name
  *                          - Away team
  *                                  team name 'division' (country)
  *                                  rank group name
  *
  * Examples:    385;10-7-2015;13.00;C;(A);7;1 A;2 B
  *              212;5-7-2015;9.15;C;A;7;AETNA MASCALUCIA (ITA);TVIS KFUM 'A' (DNK)
  *
  * Country is only used if team name is ambigious - however syntax must be maintained.
  * Division can be ommitted.
  */
 public function import(UploadedFile $uploadedFile)
 {
     $keys = array("matchno", "date", "time", "category", "group", "playground", "teamA", "teamB");
     $matches = array();
     if ($uploadedFile->isValid() && $uploadedFile->isFile()) {
         /* @var $file SplFileObject */
         $file = $uploadedFile->openFile();
         while (!$file->eof()) {
             $csv = $file->fgetcsv(";");
             $match = array();
             foreach ($csv as $idx => $data) {
                 if ($data) {
                     if (array_key_exists($idx, $keys)) {
                         if ($keys[$idx] == 'teamA' || $keys[$idx] == 'teamB') {
                             $match[$keys[$idx]] = $this->parseImportTeam($data);
                         } else {
                             $match[$keys[$idx]] = $data;
                         }
                     } else {
                         $match[] = $data;
                     }
                 }
             }
             if (count($match) > 0) {
                 $matches[] = $match;
             }
         }
     }
     return $matches;
 }
開發者ID:armandomeeuwenoord,項目名稱:icup,代碼行數:54,代碼來源:MatchPlanningController.php

示例2: createFromUploadedFile

 public static function createFromUploadedFile(UploadedFile $uploadedFile)
 {
     $dto = new self();
     $dto->setFilename($uploadedFile->getClientOriginalName());
     $content = '';
     $file = $uploadedFile->openFile();
     $file->rewind();
     while (false === $file->eof()) {
         $content .= $file->fgets();
     }
     $dto->setContent($content);
     return $dto;
 }
開發者ID:northdakota,項目名稱:DiamanteDeskBundle,代碼行數:13,代碼來源:AttachmentInput.php

示例3: importFromXLS

 /**
  * Extract stories from an XLS file
  * /!\ Not implemented
  *
  * @param UploadedFile $uploadedFile Jira File
  * @return void
  */
 private function importFromXLS(UploadedFile $uploadedFile)
 {
     $file = $uploadedFile->openFile();
     $objReader = \PHPExcel_IOFactory::createReader(\PHPExcel_IOFactory::identify($file->getRealPath()));
     $objReader->setReadDataOnly(true);
     $objPHPExcel = $objReader->load($file->getRealPath());
     $sheetData = $objPHPExcel->getActiveSheet()->toArray(null, true, true, true);
     // Till false, we try to find all mandatory field Title in the row to
     // determinate in which row the data are
     $colsFound = false;
     // Rows
     foreach ($sheetData as $rowKey => $rowData) {
         // Try to in which columns data are
         if (!$colsFound) {
             // Fields coordonnate
             // Mandatory
             $key = null;
             $summary = null;
             $type = null;
             // Optionnal
             $effort = null;
             $project = null;
             $version = null;
             $epic = null;
             // Cols
             foreach ($rowData as $colKey => $colValue) {
                 if ($colValue == self::KEY_NAME) {
                     $key = $colKey;
                 }
                 if ($colValue == self::SUMMARY_NAME) {
                     $summary = $colKey;
                 }
                 if ($colValue == self::ISSUE_NAME) {
                     $type = $colKey;
                 }
                 if ($colValue == self::EFFORT_NAME) {
                     $effort = $colKey;
                 }
                 if ($colValue == self::PROJECT_NAME) {
                     $project = $colKey;
                 }
                 if ($colValue == self::VERSION_NAME) {
                     $version = $colKey;
                 }
                 if ($colValue == self::EPIC_NAME) {
                     $epic = $colKey;
                 }
             }
             // Do we found all mandatory fields?
             if (!is_null($key) && !is_null($summary) && !is_null($type)) {
                 $colsFound = true;
             }
         } elseif ('' != $rowData[$key] && '' != $rowData[$summary] && '' != $rowData[$type]) {
             $this->stories->addStory(new Story(array('key' => $rowData[$key], 'summary' => $rowData[$summary], 'type' => $rowData[$type], 'project' => !is_null($project) ? $rowData[$project] : null, 'effort' => !is_null($effort) ? $rowData[$effort] : null, 'link' => null, 'version' => !is_null($version) ? $rowData[$version] : null, 'epic' => !is_null($epic) ? $rowData[$epic] : null)));
         }
     }
 }
開發者ID:primeminister,項目名稱:AgileStoryPrint,代碼行數:64,代碼來源:StoryCard.php


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