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


PHP Path::removeStartingSlash方法代碼示例

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


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

示例1: normalizePath

 /**
  * Normalize a path to what we need to work with.
  * Essentially, remove the starting slash and ensure there is an extension
  *
  * @param  string $path
  * @return string
  */
 public function normalizePath(&$path)
 {
     $path = Path::removeStartingSlash($path);
     $ext = '.' . Config::getContentType();
     if (!Pattern::endsWith($path, $ext)) {
         $path .= $ext;
     }
     return $path;
 }
開發者ID:andorpandor,項目名稱:git-deploy.eu2.frbit.com-yr-prototype,代碼行數:16,代碼來源:core.revisions.php

示例2: pipeList

 /**
  * Parses a string or pipe-delimited string into an array
  * 
  * @param mixed  $list  String to parse
  * @return array
  */
 public static function pipeList($list)
 {
     $output = array();
     // make an array of all options
     if (is_array($list)) {
         foreach ($list as $list_item) {
             if (strpos($list_item, "|") !== false) {
                 $output = explode("|", $list_item) + $output;
             } else {
                 array_push($output, $list_item);
             }
         }
     } else {
         if (strpos($list, "|") !== false) {
             $output = explode("|", $list);
         } else {
             array_push($output, $list);
         }
     }
     // now fix the array
     if (!count($output)) {
         $output = array();
     } else {
         $output = array_map(function ($item) {
             return Path::removeStartingSlash($item);
         }, $output);
     }
     return array_unique($output);
 }
開發者ID:Bferreira5,項目名稱:Theme-Example,代碼行數:35,代碼來源:parse.php

示例3: parseForFolders

 /**
  * Parses a mixed folder representation into a standardized array
  *
  * @param mixed  $folders  Folders
  * @return array
  */
 public static function parseForFolders($folders)
 {
     $output = array();
     // make an array of all options
     if (is_array($folders)) {
         foreach ($folders as $folder) {
             if (strpos($folder, "|") !== false) {
                 $output = array_merge($output, explode("|", $folder));
             } else {
                 array_push($output, $folder);
             }
         }
     } else {
         if (strpos($folders, "|") !== false) {
             $output = explode("|", $folders);
         } else {
             array_push($output, $folders);
         }
     }
     // now fix the array
     if (!count($output)) {
         $output = array();
     } else {
         $output = array_map(function ($item) {
             return Path::removeStartingSlash($item);
         }, $output);
     }
     return array_unique($output);
 }
開發者ID:nob,項目名稱:joi,代碼行數:35,代碼來源:helper.php


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