当前位置: 首页>>代码示例>>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;未经允许,请勿转载。