本文整理汇总了PHP中Sys::getDocRoot方法的典型用法代码示例。如果您正苦于以下问题:PHP Sys::getDocRoot方法的具体用法?PHP Sys::getDocRoot怎么用?PHP Sys::getDocRoot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sys
的用法示例。
在下文中一共展示了Sys::getDocRoot方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getRelative
/**
* Find relative path of file (remove root part)
*
* @param string $filePath
* @param string|null $rootPath
* @param string $forceDS
* @param bool $toRealpath
* @return mixed
*/
public static function getRelative($filePath, $rootPath = null, $forceDS = DIRECTORY_SEPARATOR, $toRealpath = true)
{
// Cleanup file path
if ($toRealpath && !self::isReal($filePath)) {
$filePath = self::real($filePath);
}
$filePath = self::clean($filePath, $forceDS);
// Cleanup root path
$rootPath = $rootPath ?: Sys::getDocRoot();
if ($toRealpath && !self::isReal($rootPath)) {
$rootPath = self::real($rootPath);
}
$rootPath = self::clean($rootPath, $forceDS);
// Remove root part
$relPath = preg_replace('#^' . preg_quote($rootPath) . '#i', '', $filePath);
$relPath = ltrim($relPath, $forceDS);
return $relPath;
}