本文整理汇总了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;
}
示例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);
}
示例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);
}